minix/servers/pfs/proto.h

61 lines
1.4 KiB
C
Raw Normal View History

2010-05-28 11:39:18 +02:00
#ifndef __PFS_PROTO_H__
#define __PFS_PROTO_H__
2009-12-20 21:41:50 +01:00
/* Function prototypes. */
/* Structs used in prototypes must be declared as such first. */
struct buf;
struct inode;
/* buffer.c */
struct buf *get_block(dev_t dev, pino_t inum);
void put_block(dev_t dev, pino_t inum);
2009-12-20 21:41:50 +01:00
/* cache.c */
void buf_pool(void);
2009-12-20 21:41:50 +01:00
/* inode.c */
struct inode *alloc_inode(dev_t dev, pmode_t mode, uid_t uid, gid_t gid);
void dup_inode(struct inode *ip);
struct inode *find_inode(pino_t numb);
void free_inode(struct inode *rip);
int fs_putnode(message *fs_m_in, message *fs_m_out);
void init_inode_cache(void);
struct inode *get_inode(dev_t dev, pino_t numb);
void put_inode(struct inode *rip);
void update_times(struct inode *rip);
void wipe_inode(struct inode *rip);
2009-12-20 21:41:50 +01:00
/* link.c */
int fs_ftrunc(message *fs_m_in, message *fs_m_out);
int truncate_inode(struct inode *rip, off_t newsize);
2009-12-20 21:41:50 +01:00
/* main.c */
void reply(endpoint_t who, message *m_out);
2009-12-20 21:41:50 +01:00
/* misc.c */
int fs_sync(message *fs_m_in, message *fs_m_out);
int fs_chmod(message *fs_m_in, message *fs_m_out);
2009-12-20 21:41:50 +01:00
2012-02-13 16:28:04 +01:00
/* mount.c */
int fs_unmount(message *fs_m_in, message *fs_m_out);
2012-02-13 16:28:04 +01:00
2009-12-20 21:41:50 +01:00
/* open.c */
int fs_newnode(message *fs_m_in, message *fs_m_out);
2009-12-20 21:41:50 +01:00
/* read.c */
int fs_readwrite(message *fs_m_in, message *fs_m_out);
2009-12-20 21:41:50 +01:00
/* utility.c */
time_t clock_time(void);
int no_sys(message *pfs_m_in, message *pfs_m_out);
2009-12-20 21:41:50 +01:00
/* stadir.c */
int fs_stat(message *fs_m_in, message *fs_m_out);
2009-12-20 21:41:50 +01:00
/* super.c */
bit_t alloc_bit(void);
void free_bit(bit_t bit_returned);
2010-05-28 11:39:18 +02:00
#endif