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 */
|
2010-04-13 12:58:41 +02:00
|
|
|
_PROTOTYPE( struct buf *get_block, (dev_t dev, ino_t inum) );
|
|
|
|
_PROTOTYPE( void put_block, (dev_t dev, ino_t inum) );
|
2009-12-20 21:41:50 +01:00
|
|
|
|
|
|
|
/* cache.c */
|
|
|
|
_PROTOTYPE( void buf_pool, (void) );
|
|
|
|
|
|
|
|
/* inode.c */
|
|
|
|
_PROTOTYPE( struct inode *alloc_inode, (dev_t dev, mode_t mode) );
|
|
|
|
_PROTOTYPE( void dup_inode, (struct inode *ip) );
|
2010-05-28 11:39:18 +02:00
|
|
|
_PROTOTYPE( struct inode *find_inode, (ino_t numb) );
|
2009-12-20 21:41:50 +01:00
|
|
|
_PROTOTYPE( void free_inode, (struct inode *rip) );
|
|
|
|
_PROTOTYPE( int fs_putnode, (void) );
|
|
|
|
_PROTOTYPE( void init_inode_cache, (void) );
|
2010-05-28 11:39:18 +02:00
|
|
|
_PROTOTYPE( struct inode *get_inode, (dev_t dev, ino_t numb) );
|
2009-12-20 21:41:50 +01:00
|
|
|
_PROTOTYPE( void put_inode, (struct inode *rip) );
|
|
|
|
_PROTOTYPE( void update_times, (struct inode *rip) );
|
|
|
|
_PROTOTYPE( void wipe_inode, (struct inode *rip) );
|
|
|
|
|
|
|
|
/* link.c */
|
|
|
|
_PROTOTYPE( int fs_ftrunc, (void) );
|
|
|
|
_PROTOTYPE( int truncate_inode, (struct inode *rip, off_t newsize) );
|
|
|
|
|
|
|
|
|
|
|
|
/* main.c */
|
2010-05-28 11:39:18 +02:00
|
|
|
_PROTOTYPE( void reply, (endpoint_t who, message *m_out) );
|
2009-12-20 21:41:50 +01:00
|
|
|
|
|
|
|
/* misc.c */
|
|
|
|
_PROTOTYPE( int fs_sync, (void) );
|
|
|
|
|
|
|
|
/* open.c */
|
|
|
|
_PROTOTYPE( int fs_newnode, (void) );
|
|
|
|
|
|
|
|
/* read.c */
|
|
|
|
_PROTOTYPE( int fs_readwrite, (void) );
|
|
|
|
|
|
|
|
/* utility.c */
|
|
|
|
_PROTOTYPE( time_t clock_time, (void) );
|
|
|
|
_PROTOTYPE( int no_sys, (void) );
|
|
|
|
|
|
|
|
/* stadir.c */
|
|
|
|
_PROTOTYPE( int fs_stat, (void) );
|
|
|
|
|
|
|
|
/* super.c */
|
|
|
|
_PROTOTYPE( bit_t alloc_bit, (void) );
|
|
|
|
_PROTOTYPE( void free_bit, (bit_t bit_returned) );
|
2010-05-28 11:39:18 +02:00
|
|
|
|
|
|
|
#endif
|