mkfs: drop support for running on DOS
[minix.git] / servers / vfs / job.h
blob046a11b30c1431f2983e922ba401cd7cb740514f
1 #ifndef __VFS_WORK_H__
2 #define __VFS_WORK_H__
4 struct job {
5 struct fproc *j_fp;
6 message j_m_in;
7 int j_err_code;
8 void *(*j_func)(void *arg);
9 struct job *j_next;
12 #endif