minix/servers/avfs/job.h
2011-10-25 12:12:20 +00:00

13 lines
181 B
C

#ifndef __VFS_WORK_H__
#define __VFS_WORK_H__
struct job {
struct fproc *j_fp;
message j_m_in;
int j_err_code;
void *(*j_func)(void *arg);
struct job *j_next;
};
#endif