2010-05-28 11:39:18 +02:00
|
|
|
#ifndef __PFS_GLO_H__
|
|
|
|
#define __PFS_GLO_H__
|
|
|
|
|
2009-12-20 21:41:50 +01:00
|
|
|
/* EXTERN should be extern except for the table file */
|
|
|
|
#ifdef _TABLE
|
|
|
|
#undef EXTERN
|
|
|
|
#define EXTERN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <minix/vfsif.h>
|
|
|
|
|
|
|
|
/* The following variables are used for returning results to the caller. */
|
|
|
|
EXTERN int err_code; /* temporary storage for error number */
|
|
|
|
|
2012-03-24 16:16:34 +01:00
|
|
|
EXTERN int(*fs_call_vec[]) (message *fs_m_in, message *fs_m_out);
|
2009-12-20 21:41:50 +01:00
|
|
|
|
|
|
|
EXTERN int exitsignaled;
|
|
|
|
EXTERN int busy;
|
2012-02-13 16:28:04 +01:00
|
|
|
EXTERN int unmountdone;
|
2009-12-20 21:41:50 +01:00
|
|
|
|
|
|
|
/* Inode map. */
|
2013-05-28 21:29:08 +02:00
|
|
|
EXTERN bitchunk_t inodemap[FS_BITMAP_CHUNKS(PFS_NR_INODES)];
|
2010-05-28 11:39:18 +02:00
|
|
|
|
|
|
|
#endif
|