tnobwatch.c - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tnobwatch.c (340B)
---
1 #include "stdinc.h"
2 #include "dat.h"
3 #include "fns.h"
4 #include "error.h"
5
6 void
7 bwatchReset(uchar score[VtScoreSize])
8 {
9 USED(score);
10 }
11
12 void
13 bwatchInit(void)
14 {
15 }
16
17 void
18 bwatchSetBlockSize(uint i)
19 {
20 USED(i);
21 }
22
23 void
24 bwatchDependency(Block *b)
25 {
26 USED(b);
27 }
28
29 void
30 bwatchLock(Block *b)
31 {
32 USED(b);
33 }
34
35 void
36 bwatchUnlock(Block *b)
37 {
38 USED(b);
39 }