diff options
| author | rsc <devnull@localhost> | 2005-02-11 00:01:49 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2005-02-11 00:01:49 +0000 |
| commit | 281c90a5be6b1ab2280ffa23885fe41e7af80bce (patch) | |
| tree | c26a67c58f869a3a6821f1a0ae980af03d4eb430 /src/cmd/acid/acid.h | |
| parent | ce2a378d46c0bcd00ec08b9bc4ad861c8aa28a2f (diff) | |
| download | plan9port-281c90a5be6b1ab2280ffa23885fe41e7af80bce.tar.gz plan9port-281c90a5be6b1ab2280ffa23885fe41e7af80bce.zip | |
more pthread
Diffstat (limited to 'src/cmd/acid/acid.h')
| -rw-r--r-- | src/cmd/acid/acid.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cmd/acid/acid.h b/src/cmd/acid/acid.h index 866816e8..95f768e8 100644 --- a/src/cmd/acid/acid.h +++ b/src/cmd/acid/acid.h @@ -132,7 +132,10 @@ struct Store String* string; List* l; Node* cc; - char* reg; + struct { + char *name; + uint thread; + } reg; Node* con; } u; }; @@ -258,6 +261,7 @@ String* strnode(char*); String* strnodlen(char*, int); #define system acidsystem char* system(void); +Regs* threadregs(uint); int trlist(Map*, Regs*, ulong, ulong, Symbol*, int); void unwind(void); void userinit(void); |
