diff options
| author | rsc <devnull@localhost> | 2003-10-01 02:50:57 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-10-01 02:50:57 +0000 |
| commit | a995e477ffb4dd1184da87e9e46a9e57f3178c63 (patch) | |
| tree | 5b2260becdfb1aaf8b67fd91223b7d214b7e9451 /src/lib9/lock.c | |
| parent | e182749a982e415fba755bc1035c35da5c4fe606 (diff) | |
| download | plan9port-a995e477ffb4dd1184da87e9e46a9e57f3178c63.tar.gz plan9port-a995e477ffb4dd1184da87e9e46a9e57f3178c63.zip | |
Various tweaks to make things run on Mac OS.
The main change is the use of pthread to implement ffork.
Diffstat (limited to 'src/lib9/lock.c')
| -rw-r--r-- | src/lib9/lock.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib9/lock.c b/src/lib9/lock.c index 2da73626..5d6f2f3e 100644 --- a/src/lib9/lock.c +++ b/src/lib9/lock.c @@ -8,12 +8,9 @@ _xtas(void *v) { int x; -_ntas++; + _ntas++; x = _tas(v); - if(x == 0 || x == 0xCAFEBABE) - return x; - fprint(2, "%d: tas %p got %ux\n", getpid(), v, x); - abort(); + return x; } int |
