test41: relax maximum timer tick rate
[minix.git] / servers / iso9660fs / glo.h
blobbb84c902a28f3ddd68e2487ac712a90ec651134d
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 int SELF_E; /* process number */
26 EXTERN short path_processed; /* number of characters processed */
27 EXTERN char user_path[PATH_MAX+1]; /* pathname to be processed */
28 EXTERN char *vfs_slink_storage;
29 EXTERN int symloop;
31 EXTERN int unmountdone;
33 EXTERN dev_t fs_dev; /* the device that is handled by this FS proc */
34 EXTERN char fs_dev_label[16]; /* Name of the device driver that is handled */
36 EXTERN int use_getuptime2; /* Should be removed togetherwith boottime */