plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 669a062b5ac041312f6b9371b665f9c1e2b93799
parent 2c0803972bab12df909dac3922a4b73d16221553
Author: rsc <devnull@localhost>
Date:   Sun, 30 Jan 2005 16:35:05 +0000

osprocid can be -1

Diffstat:
Msrc/libthread/threadimpl.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;