diff options
author | rsc <devnull@localhost> | 2006-02-07 17:02:05 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-02-07 17:02:05 +0000 |
commit | 615e0f9fb2df0e782f6b32ea9f0f67254e1ddeaf (patch) | |
tree | 0f6f1f5a82ea81f30486f1e9aa27910a822d1f81 /src/libthread | |
parent | 8b9a1d4cfefb87cb89835880d528ce8d8b5eecdc (diff) | |
download | plan9port-615e0f9fb2df0e782f6b32ea9f0f67254e1ddeaf.tar.gz plan9port-615e0f9fb2df0e782f6b32ea9f0f67254e1ddeaf.tar.bz2 plan9port-615e0f9fb2df0e782f6b32ea9f0f67254e1ddeaf.zip |
add threadidle
Diffstat (limited to 'src/libthread')
-rw-r--r-- | src/libthread/thread.c | 31 | ||||
-rw-r--r-- | src/libthread/threadimpl.h | 1 |
2 files changed, 30 insertions, 2 deletions
diff --git a/src/libthread/thread.c b/src/libthread/thread.c index ca4d35af..8a5643b0 100644 --- a/src/libthread/thread.c +++ b/src/libthread/thread.c @@ -208,6 +208,22 @@ _threadready(_Thread *t) } int +threadidle(void) +{ + int n; + Proc *p; + + p = proc(); + n = p->nswitch; + lock(&p->lock); + p->runrend.l = &p->lock; + addthread(&p->idlequeue, p->thread); + unlock(&p->lock); + _threadswitch(); + return p->nswitch - n; +} + +int threadyield(void) { int n; @@ -255,6 +271,16 @@ procscheduler(Proc *p) while((t = p->runqueue.head) == nil){ if(p->nthread == 0) goto Out; + if((t = p->idlequeue.head) != nil){ + /* + * Run all the idling threads once. + */ + while((t = p->idlequeue.head) != nil){ + delthread(&p->idlequeue, t); + addthread(&p->runqueue, t); + } + continue; + } p->runrend.l = &p->lock; _threaddebug("scheduler sleep"); _procsleep(&p->runrend); @@ -272,7 +298,7 @@ procscheduler(Proc *p) if(t->exiting){ delthreadinproc(p, t); p->nthread--; -//print("ntrhead %d\n", p->nthread); +//print("nthread %d\n", p->nthread); free(t); } } @@ -598,7 +624,8 @@ main(int argc, char **argv) argv0 = argv[0]; - _threadsetupdaemonize(); + if(getenv("NOLIBTHREADDAEMONIZE") == nil) + _threadsetupdaemonize(); threadargc = argc; threadargv = argv; diff --git a/src/libthread/threadimpl.h b/src/libthread/threadimpl.h index 33644657..d1f3e938 100644 --- a/src/libthread/threadimpl.h +++ b/src/libthread/threadimpl.h @@ -126,6 +126,7 @@ struct Proc int nswitch; _Thread *thread; _Threadlist runqueue; + _Threadlist idlequeue; _Threadlist allthreads; uint nthread; uint sysproc; |