minix/servers/vfs/job.h
2012-02-13 16:53:21 +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