diff options
author | rsc <devnull@localhost> | 2005-01-30 16:35:05 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-30 16:35:05 +0000 |
commit | 669a062b5ac041312f6b9371b665f9c1e2b93799 (patch) | |
tree | f94142a11e1665b0c431f51d95b057fbf015c914 | |
parent | 2c0803972bab12df909dac3922a4b73d16221553 (diff) | |
download | plan9port-669a062b5ac041312f6b9371b665f9c1e2b93799.tar.gz plan9port-669a062b5ac041312f6b9371b665f9c1e2b93799.tar.bz2 plan9port-669a062b5ac041312f6b9371b665f9c1e2b93799.zip |
osprocid can be -1
-rw-r--r-- | src/libthread/threadimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libthread/threadimpl.h b/src/libthread/threadimpl.h index cb5b0168..f0b55d97 100644 --- a/src/libthread/threadimpl.h +++ b/src/libthread/threadimpl.h @@ -95,7 +95,7 @@ struct Proc #ifdef PLAN9PORT_USING_PTHREADS pthread_t osprocid; #else - uint osprocid; + int osprocid; #endif Lock lock; int nswitch; |