repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mkfs: drop support for running on DOS
[minix.git]
/
servers
/
vfs
/
job.h
blob
046a11b30c1431f2983e922ba401cd7cb740514f
1
#ifndef __VFS_WORK_H__
2
#define __VFS_WORK_H__
3
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
;
10
};
11
12
#endif