new libunwind, updated to netbsd b1f513eedd
[minix3.git] / servers / iso9660fs / glo.h
blob46b0cd9056be378759b2bd7fb61d03573dd86e28
1 /* EXTERN should be extern except for the table file */
2 #ifdef _TABLE
3 #undef EXTERN
4 #define EXTERN
5 #endif
7 /* The following variables are used for returning results to the caller. */
9 EXTERN int err_code; /* temporary storage for error number */
10 EXTERN int rdwt_err; /* status of last disk i/o request */
12 EXTERN int(*fs_call_vec[]) (void);
14 EXTERN message fs_m_in; /* contains the input message of the request */
15 EXTERN message fs_m_out; /* contains the output message of the
16 * request */
17 EXTERN int FS_STATE;
19 EXTERN uid_t caller_uid;
20 EXTERN gid_t caller_gid;
22 EXTERN int req_nr; /* request number to the server */
24 EXTERN short path_processed; /* number of characters processed */
25 EXTERN char user_path[PATH_MAX+1]; /* pathname to be processed */
26 EXTERN char *vfs_slink_storage;
27 EXTERN int symloop;
29 EXTERN int unmountdone;
31 EXTERN dev_t fs_dev; /* the device that is handled by this FS proc */
32 EXTERN char fs_dev_label[16]; /* Name of the device driver that is handled */