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
Drop main() prototype. Syncs with NetBSD-8
[minix.git]
/
minix
/
fs
/
mfs
/
clean.h
blob
5d367116d7ee763fa21bcf5f911efd9f73dd4c52
1
2
#ifndef _MFS_CLEAN_H
3
#define _MFS_CLEAN_H 1
4
5
#define MARKDIRTY(b) do { \
6
if (superblock.s_rd_only) { \
7
printf(
"%s:%d: dirty block on rofs! "
, __FILE__, __LINE__); \
8
util_stacktrace(); \
9
} else { \
10
lmfs_markdirty(b); \
11
} \
12
} while(0)
13
14
#endif