summaryrefslogtreecommitdiffstats
path: root/src/libfs/fsimpl.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-27 00:12:54 +0000
committerrsc <devnull@localhost>2004-12-27 00:12:54 +0000
commit94235a8b4bdd20766b41302fa21a31df660b078b (patch)
treed0d3ae4e5f26113ac412a89c40107520d6d8f949 /src/libfs/fsimpl.h
parent9cb6f43045e64e6dcbe1fa5ccd4848838ba76178 (diff)
downloadplan9port-94235a8b4bdd20766b41302fa21a31df660b078b.tar.gz
plan9port-94235a8b4bdd20766b41302fa21a31df660b078b.zip
change to use new thread library
Diffstat (limited to 'src/libfs/fsimpl.h')
-rw-r--r--src/libfs/fsimpl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libfs/fsimpl.h b/src/libfs/fsimpl.h
index fbcc3777..59cecaa5 100644
--- a/src/libfs/fsimpl.h
+++ b/src/libfs/fsimpl.h
@@ -1,6 +1,8 @@
/* Copyright (C) 2003 Russ Cox, Massachusetts Institute of Technology */
/* See COPYRIGHT */
+#include <thread.h>
+
typedef struct Queue Queue;
Queue *_fsqalloc(void);
int _fsqsend(Queue*, void*);
@@ -22,6 +24,8 @@ struct Fsys
Queue *rxq;
Fid *freefid;
int nextfid;
+ Ioproc *iorecv;
+ Ioproc *iosend;
};
struct Fid