29 lines
		
	
	
		
			739 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			739 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __PFS_GLO_H__
 | 
						|
#define __PFS_GLO_H__
 | 
						|
 | 
						|
/* 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 */
 | 
						|
 | 
						|
EXTERN _PROTOTYPE (int (*fs_call_vec[]), (message *fs_m_in, message *fs_m_out) ); /* fs call table */
 | 
						|
EXTERN _PROTOTYPE (int (*dev_call_vec[]), (message *fs_m_in, message *fs_m_out) ); /* dev call table */
 | 
						|
 | 
						|
EXTERN uid_t caller_uid;
 | 
						|
EXTERN gid_t caller_gid;
 | 
						|
EXTERN int req_nr;
 | 
						|
EXTERN int SELF_E;
 | 
						|
EXTERN int exitsignaled;
 | 
						|
EXTERN int busy;
 | 
						|
 | 
						|
/* Inode map. */
 | 
						|
EXTERN bitchunk_t inodemap[FS_BITMAP_CHUNKS(NR_INODES)]; 
 | 
						|
 | 
						|
#endif
 |