minix/servers/avfs/comm.h
2011-08-17 13:40:36 +00:00

13 lines
336 B
C

#ifndef __VFS_COMM_H__
#define __VFS_COMM_H__
/* VFS<->FS communication */
typedef struct {
int c_max_reqs; /* Max requests an FS can handle simultaneously */
int c_cur_reqs; /* Number of requests the FS is currently handling */
struct worker_thread *c_req_queue;/* Queue of procs waiting to send a message */
} comm_t;
#endif