minix/servers/vfs/job.h

13 lines
181 B
C
Raw Normal View History

2011-08-17 15:23:45 +02:00
#ifndef __VFS_WORK_H__
#define __VFS_WORK_H__
struct job {
struct fproc *j_fp;
message j_m_in;
int j_err_code;
2011-08-17 15:23:45 +02:00
void *(*j_func)(void *arg);
struct job *j_next;
};
#endif