mkfs: drop support for running on DOS
[minix.git] / servers / vfs / comm.h
blob4e0d00cc335026ad88621345e0c9ea94f9cba7a1
1 #ifndef __VFS_COMM_H__
2 #define __VFS_COMM_H__
4 /* VFS<->FS communication */
6 typedef struct {
7 int c_max_reqs; /* Max requests an FS can handle simultaneously */
8 int c_cur_reqs; /* Number of requests the FS is currently handling */
9 struct worker_thread *c_req_queue;/* Queue of procs waiting to send a message */
10 } comm_t;
12 #endif