12 lines
163 B
C
12 lines
163 B
C
|
#ifndef __VFS_WORK_H__
|
||
|
#define __VFS_WORK_H__
|
||
|
|
||
|
struct job {
|
||
|
struct fproc *j_fp;
|
||
|
message j_m_in;
|
||
|
void *(*j_func)(void *arg);
|
||
|
struct job *j_next;
|
||
|
};
|
||
|
|
||
|
#endif
|