plan9port

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

commit cbf1d024334865cdeee85261ead2a24626d23eae
parent c54b8b69ede9d92e802baa1163d9cd734b034fb4
Author: rsc <devnull@localhost>
Date:   Fri, 27 Jan 2006 07:24:58 +0000

can zero, will zero

Diffstat:
Msrc/lib9/sleep.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib9/sleep.c b/src/lib9/sleep.c @@ -9,7 +9,7 @@ # define sched_yield() \ # do{ struct timespec ts; \ # ts.tv_sec = 0; \ -# ts.tv_nsec = 10; \ +# ts.tv_nsec = 0; \ # nanosleep(&ts, 0); \ # }while(0) #endif