/usr/include/flext/flthr.cpp is in pd-flext-dev 0.6.0+git20161101.1.01318a94-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | /*
flext - C++ layer for Max and Pure Data externals
Copyright (c) 2001-2015 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
/*! \file flthr.cpp
\brief Implementation of the flext thread functionality.
*/
#ifndef __FLEXT_THR_CPP
#define __FLEXT_THR_CPP
#include "flext.h"
#ifdef FLEXT_THREADS
// maximum wait time for threads to finish (in ms)
#define MAXIMUMWAIT 100
#include "flinternal.h"
#include "flcontainers.h"
#include <set>
#include <ctime>
#if FLEXT_OSAPI == FLEXT_OSAPI_MAC_MACH || FLEXT_OSAPI == FLEXT_OSAPI_UNIX_POSIX || FLEXT_OSAPI == FLEXT_OSAPI_WIN_POSIX
#include <sys/time.h>
#include <unistd.h>
#elif FLEXT_OS == FLEXT_OS_WIN
#include <sys/timeb.h>
#endif
#if FLEXT_THREADS == FLEXT_THR_WIN32 && WINVER < 0x0500
#error WIN32 threads need Windows SDK version >= 0x500
#endif
#include <cerrno>
#include "flpushns.h"
//! Thread id of system thread - will be initialized in flext::Setup
FLEXT_TEMPIMPL(FLEXT_TEMPINST(FLEXT_CLASSDEF(flext))::thrid_t FLEXT_CLASSDEF(flext))::thrid;
//! Thread id of helper thread - will be initialized in flext::Setup
FLEXT_TEMPIMPL(FLEXT_TEMPINST(FLEXT_CLASSDEF(flext))::thrid_t FLEXT_CLASSDEF(flext))::thrhelpid;
//! \brief This represents an entry to the list of active method threads
class thr_entry
: public flext
, public LifoCell
{
public:
void Set(void (*m)(thr_params *),thr_params *p,thrid_t id = GetThreadId())
{
th = p?p->cl:NULL;
meth = m,params = p,thrid = id;
shouldexit = false;
#if FLEXT_THREADS == FLEXT_THR_MP
weight = 100; // MP default weight
#endif
}
//! \brief Check if this class represents the current thread
bool Is(thrid_t id = GetThreadId()) const { return IsThread(thrid,id); }
FLEXT_TEMPINST(FLEXT_CLASSDEF(flext_base)) *This() const { return th; }
thrid_t Id() const { return thrid; }
FLEXT_TEMPINST(FLEXT_CLASSDEF(flext_base)) *th;
void (*meth)(thr_params *);
thr_params *params;
thrid_t thrid;
bool shouldexit;
#if FLEXT_THREADS == FLEXT_THR_MP
int weight;
#endif
};
template<class T>
class ThrFinder:
public T
{
public:
~ThrFinder() { thr_entry *e; while((e = Pop()) != NULL) delete e; }
void Push(thr_entry *e) { T::Push(e); }
thr_entry *Pop() { return T::Pop(); }
thr_entry *Find(flext::thrid_t id,bool pop = false)
{
TypedLifo<thr_entry> qutmp;
thr_entry *fnd;
while((fnd = Pop()) && !fnd->Is(id)) qutmp.Push(fnd);
// put back entries
for(thr_entry *ti; (ti = qutmp.Pop()) != NULL; ) Push(ti);
if(fnd && !pop) Push(fnd);
return fnd;
}
};
FLEXT_TEMPLATE
struct ThrRegistry
{
typedef ThrFinder< PooledLifo<thr_entry,1,10> > RegPooledLifo;
typedef ThrFinder< TypedLifo<thr_entry> > RegFinder;
static RegPooledLifo pending;
static RegFinder active,stopped;
};
FLEXT_TEMPIMPL(FLEXT_TEMPINST(ThrRegistry)::RegPooledLifo ThrRegistry)::pending;
FLEXT_TEMPIMPL(FLEXT_TEMPINST(ThrRegistry)::RegFinder ThrRegistry)::active;
FLEXT_TEMPIMPL(FLEXT_TEMPINST(ThrRegistry)::RegFinder ThrRegistry)::stopped;
class ThrId
: public flext
{
public:
ThrId(const thrid_t &_id): id(_id) {}
thrid_t id;
bool operator <(const ThrId &tid) const
{
if(sizeof(id) == sizeof(unsigned))
return (unsigned *)&id < (unsigned *)&tid;
else
return memcmp(&id,&tid,sizeof(id)) < 0;
}
};
FLEXT_TEMPLATE
struct ThrVars {
// this should _definitely_ be a hashmap....
// \TODO above all it should be populated immediately, otherwise it could easily happen
// that the passing on to the set happens too late! We need that lockfree set!
static std::set<ThrId> regthreads;
//! Registry lock
static flext::ThrMutex *thrregmtx;
//! Helper thread conditional
static flext::ThrCond *thrhelpcond;
static bool initialized;
};
FLEXT_TEMPIMPL(std::set<ThrId> ThrVars)::regthreads;
FLEXT_TEMPIMPL(flext::ThrMutex *ThrVars)::thrregmtx = NULL;
FLEXT_TEMPIMPL(flext::ThrCond *ThrVars)::thrhelpcond = NULL;
FLEXT_TEMPIMPL(bool ThrVars)::initialized = false;
FLEXT_TEMPLATE void LaunchHelper(thr_entry *e)
{
e->thrid = flext::GetThreadId();
flext::RegisterThread(e->thrid);
e->meth(e->params);
flext::UnregisterThread(e->thrid);
}
//! Start helper thread
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::StartHelper()
{
bool ok = false;
FLEXT_TEMPINST(ThrVars)::initialized = false;
FLEXT_TEMPINST(ThrVars)::thrregmtx = new ThrMutex;
#if FLEXT_THREADS == FLEXT_THR_POSIX
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED);
pthread_t tmp;
ok = pthread_create (&tmp,&attr,(void *(*)(void *))ThrHelper,NULL) == 0;
#elif FLEXT_THREADS == FLEXT_THR_MP
if(!MPLibraryIsLoaded())
error("Thread library is not loaded");
else {
MPTaskID tmp;
OSStatus ret = MPCreateTask((TaskProc)ThrHelper,NULL,0,0,0,0,0,&tmp);
ok = ret == noErr;
}
#elif FLEXT_THREADS == FLEXT_THR_WIN32
ok = _beginthread(ThrHelper,0,NULL) >= 0;
#else
#error
#endif
if(!ok)
error("flext - Could not launch helper thread!");
else {
// now we have to wait for thread helper to initialize
while(!FLEXT_TEMPINST(ThrVars)::initialized) Sleep(0.001);
// we are ready for threading now!
}
#if FLEXT_THREADS == FLEXT_THR_POSIX
pthread_attr_destroy(&attr);
#endif
return ok;
}
//! Static helper thread function
FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext))::ThrHelper(void *)
{
thrhelpid = GetThreadId();
#if FLEXT_THREADS == FLEXT_THR_POSIX
// set prototype thread attributes
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED);
#endif
// set thread priority one point below normal
// so thread construction won't disturb real-time audio
RelPriority(-1);
FLEXT_TEMPINST(ThrVars)::thrhelpcond = new ThrCond;
FLEXT_TEMPINST(ThrVars)::initialized = true;
// helper loop
for(;;) {
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Wait();
// start all inactive threads
thr_entry *ti;
while((ti = FLEXT_TEMPINST(ThrRegistry)::pending.Pop()) != NULL) {
bool ok;
#if FLEXT_THREADS == FLEXT_THR_POSIX
thrid_t dummy;
ok = pthread_create (&dummy,&attr,(void *(*)(void *))FLEXT_TEMPINST(LaunchHelper),ti) == 0;
#elif FLEXT_THREADS == FLEXT_THR_MP
thrid_t dummy;
ok = MPCreateTask((TaskProc)FLEXT_TEMPINST(LaunchHelper),ti,0,0,0,0,0,&dummy) == noErr;
#elif FLEXT_THREADS == FLEXT_THR_WIN32
ok = _beginthread((void (*)(void *))FLEXT_TEMPINST(LaunchHelper),0,ti) >= 0;
#else
#error
#endif
if(!ok) {
error("flext - Could not launch thread!");
FLEXT_TEMPINST(ThrRegistry)::pending.Free(ti); ti = NULL;
}
else
// insert into queue of active threads
FLEXT_TEMPINST(ThrRegistry)::active.Push(ti);
}
}
FLEXT_ASSERT(false);
/*
// Never reached!
delete thrhelpcond;
thrhelpcond = NULL;
#if FLEXT_THREADS == FLEXT_THR_POSIX
pthread_attr_destroy(&attr);
#endif
*/
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::LaunchThread(void (*meth)(thr_params *p),thr_params *p)
{
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrhelpcond);
// make an entry into thread list
thr_entry *e = FLEXT_TEMPINST(ThrRegistry)::pending.New();
e->Set(meth,p);
FLEXT_TEMPINST(ThrRegistry)::pending.Push(e);
// signal thread helper
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Signal();
return true;
}
FLEXT_TEMPLATE bool waitforstopped(TypedLifo<thr_entry> &qufnd,float wait = 0)
{
TypedLifo<thr_entry> qutmp;
double until;
if(wait) until = flext::GetOSTime()+wait;
for(;;) {
thr_entry *fnd = qufnd.Pop();
if(!fnd) break; // no more entries -> done!
thr_entry *ti;
// search for entry
while((ti = FLEXT_TEMPINST(ThrRegistry)::stopped.Pop()) != NULL && ti != fnd) qutmp.Push(ti);
// put back entries
while((ti = qutmp.Pop()) != NULL) FLEXT_TEMPINST(ThrRegistry)::stopped.Push(ti);
if(ti) {
// still in ThrRegistry::stopped queue
qufnd.Push(fnd);
// yield to other threads
flext::ThrYield();
if(wait && flext::GetOSTime() > until)
// not successful -> remaining thread are still in qufnd queue
return false;
}
}
return true;
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::StopThread(void (*meth)(thr_params *p),thr_params *p,bool wait)
{
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrhelpcond);
TypedLifo<thr_entry> qutmp;
thr_entry *ti;
// first search pending queue
// --------------------------
{
bool found = false;
while((ti = FLEXT_TEMPINST(ThrRegistry)::pending.Pop()) != NULL)
if(ti->meth == meth && ti->params == p) {
// found -> thread hasn't started -> just delete
FLEXT_TEMPINST(ThrRegistry)::pending.Free(ti);
found = true;
}
else
qutmp.Push(ti);
// put back into pending queue (order doesn't matter)
while((ti = qutmp.Pop()) != NULL) FLEXT_TEMPINST(ThrRegistry)::pending.Push(ti);
if(found) return true;
}
// now search active queue
// -----------------------
TypedLifo<thr_entry> qufnd;
while((ti = FLEXT_TEMPINST(ThrRegistry)::active.Pop()) != NULL)
if(ti->meth == meth && ti->params == p) {
FLEXT_TEMPINST(ThrRegistry)::stopped.Push(ti);
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Signal();
qufnd.Push(ti);
}
else
qutmp.Push(ti);
// put back into pending queue (order doesn't matter)
while((ti = qutmp.Pop()) != NULL) FLEXT_TEMPINST(ThrRegistry)::active.Push(ti);
// wakeup helper thread
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Signal();
// now wait for entries in qufnd to have vanished from ThrRegistry::stopped
if(wait)
return FLEXT_TEMPINST(waitforstopped)(qufnd);
else
return !qufnd.Avail();
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::ShouldExit()
{
return FLEXT_TEMPINST(ThrRegistry)::stopped.Find(GetThreadId()) != NULL;
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::PushThread()
{
// set priority of newly created thread one point below the system thread's
RelPriority(-1);
RegisterThread();
return true;
}
FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext))::PopThread()
{
thrid_t id = GetThreadId();
UnregisterThread(id);
thr_entry *fnd = FLEXT_TEMPINST(ThrRegistry)::stopped.Find(id,true);
if(!fnd) fnd = FLEXT_TEMPINST(ThrRegistry)::active.Find(id,true);
if(fnd)
FLEXT_TEMPINST(ThrRegistry)::pending.Free(fnd);
#ifdef FLEXT_DEBUG
else
post("flext - INTERNAL ERROR: Thread not found!");
#endif
}
FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext))::RegisterThread(thrid_t id)
{
#if 1
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrregmtx);
FLEXT_TEMPINST(ThrVars)::thrregmtx->Lock();
FLEXT_TEMPINST(ThrVars)::regthreads.insert(id);
FLEXT_TEMPINST(ThrVars)::thrregmtx->Unlock();
#else
regqueue.Push(new ThrIdCell(id));
#endif
}
FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext))::UnregisterThread(thrid_t id)
{
#if 1
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrregmtx);
FLEXT_TEMPINST(ThrVars)::thrregmtx->Lock();
FLEXT_TEMPINST(ThrVars)::regthreads.erase(id);
FLEXT_TEMPINST(ThrVars)::thrregmtx->Unlock();
#else
unregqueue.Push(new ThrIdCell(id));
#endif
}
#if 0
FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext))::ThreadRegistryWorker()
{
ThrIdCell *pid;
while((pid = regqueue.Pop()) != NULL) { regthreads.insert(pid->id); delete pid; }
while((pid = unregqueue.Pop()) != NULL) { regthreads.erase(pid->id); delete pid; }
}
#endif
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::IsThreadRegistered()
{
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrregmtx);
FLEXT_TEMPINST(ThrVars)::thrregmtx->Lock();
bool fnd = FLEXT_TEMPINST(ThrVars)::regthreads.find(GetThreadId()) != FLEXT_TEMPINST(ThrVars)::regthreads.end();
FLEXT_TEMPINST(ThrVars)::thrregmtx->Unlock();
return fnd;
}
//! Terminate all object threads
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext_base))::StopThreads()
{
FLEXT_ASSERT(FLEXT_TEMPINST(ThrVars)::thrhelpcond);
TypedLifo<thr_entry> qutmp;
thr_entry *ti;
// first search pending queue
// --------------------------
while((ti = FLEXT_TEMPINST(ThrRegistry)::pending.Pop()) != NULL)
if(ti->This() == this)
// found -> thread hasn't started -> just delete
FLEXT_TEMPINST(ThrRegistry)::pending.Free(ti);
else
qutmp.Push(ti);
// put back into pending queue (order doesn't matter)
while((ti = qutmp.Pop()) != NULL) FLEXT_TEMPINST(ThrRegistry)::pending.Push(ti);
// now search active queue
// -----------------------
TypedLifo<thr_entry> qufnd;
while((ti = FLEXT_TEMPINST(ThrRegistry)::active.Pop()) != NULL)
if(ti->This() == this) {
FLEXT_TEMPINST(ThrRegistry)::stopped.Push(ti);
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Signal();
qufnd.Push(ti);
}
else
qutmp.Push(ti);
// put back into pending queue (order doesn't matter)
while((ti = qutmp.Pop()) != NULL) FLEXT_TEMPINST(ThrRegistry)::active.Push(ti);
// wakeup helper thread
FLEXT_TEMPINST(ThrVars)::thrhelpcond->Signal();
// now wait for entries in qufnd to have vanished from ThrRegistry::stopped
if(!FLEXT_TEMPINST(waitforstopped)(qufnd,MAXIMUMWAIT*0.001f)) {
#ifdef FLEXT_DEBUG
post("flext - doing hard thread termination");
#endif
// timeout -> hard termination
while((ti = qufnd.Pop()) != NULL) {
#if FLEXT_THREADS == FLEXT_THR_POSIX
if(pthread_cancel(ti->thrid))
post("%s - Thread could not be terminated!",thisName());
#elif FLEXT_THREADS == FLEXT_THR_MP
MPTerminateTask(ti->thrid,0);
// here, we should use a task queue to check whether the task has really terminated!!
#elif FLEXT_THREADS == FLEXT_THR_WIN32
// can't use the c library function _endthread.. memory leaks will occur
HANDLE hnd = OpenThread(THREAD_ALL_ACCESS,TRUE,ti->thrid);
TerminateThread(hnd,0);
#else
# error Not implemented
#endif
FLEXT_TEMPINST(ThrRegistry)::pending.Free(ti);
}
return false;
}
else
return true;
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::RelPriority(int dp,thrid_t ref,thrid_t id)
{
#if FLEXT_THREADS == FLEXT_THR_POSIX
sched_param parm;
int policy;
if(pthread_getschedparam(ref,&policy,&parm) < 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to get thread priority");
# endif
return false;
}
else {
parm.sched_priority += dp;
// MSVC++ 6 produces wrong code with the following lines!!!
// int schmin = sched_get_priority_min(policy);
// int schmax = sched_get_priority_max(policy);
if(parm.sched_priority < sched_get_priority_min(policy)) {
# ifdef FLEXT_DEBUG
post("flext - minimum thread priority reached");
# endif
parm.sched_priority = sched_get_priority_min(policy);
}
else if(parm.sched_priority > sched_get_priority_max(policy)) {
# ifdef FLEXT_DEBUG
post("flext - maximum thread priority reached");
# endif
parm.sched_priority = sched_get_priority_max(policy);
}
if(pthread_setschedparam(id,policy,&parm) < 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to change thread priority");
# endif
return false;
}
}
return true;
#elif FLEXT_THREADS == FLEXT_THR_WIN32
HANDLE href = OpenThread(THREAD_ALL_ACCESS,TRUE,ref);
HANDLE hid = OpenThread(THREAD_ALL_ACCESS,TRUE,id);
int pr = GetThreadPriority(href);
if(pr == THREAD_PRIORITY_ERROR_RETURN) {
# ifdef FLEXT_DEBUG
post("flext - failed to get thread priority");
# endif
return false;
}
pr += dp;
if(pr < THREAD_PRIORITY_IDLE) {
# ifdef FLEXT_DEBUG
post("flext - minimum thread priority reached");
# endif
pr = THREAD_PRIORITY_IDLE;
}
else if(pr > THREAD_PRIORITY_TIME_CRITICAL) {
# ifdef FLEXT_DEBUG
post("flext - maximum thread priority reached");
# endif
pr = THREAD_PRIORITY_TIME_CRITICAL;
}
if(SetThreadPriority(hid,pr) == 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to change thread priority");
# endif
return false;
}
return true;
#elif FLEXT_THREADS == FLEXT_THR_MP
thr_entry *ti = FLEXT_TEMPINST(ThrRegistry)::pending.Find(id);
if(!ti) ti = FLEXT_TEMPINST(ThrRegistry)::active.Find(id);
if(ti) {
// thread found in list
int w = GetPriority(id);
if(dp < 0) w /= 1<<(-dp);
else w *= 1<<dp;
if(w < 1) {
# ifdef FLEXT_DEBUG
post("flext - minimum thread priority reached");
# endif
w = 1;
}
else if(w > 10000) {
# ifdef FLEXT_DEBUG
post("flext - maximum thread priority reached");
# endif
w = 10000;
}
ti->weight = w;
return MPSetTaskWeight(id,w) == noErr;
}
else return false;
#else
# error
#endif
}
FLEXT_TEMPIMPL(int FLEXT_CLASSDEF(flext))::GetPriority(thrid_t id)
{
#if FLEXT_THREADS == FLEXT_THR_POSIX
sched_param parm;
int policy;
if(pthread_getschedparam(id,&policy,&parm) < 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to get parms");
# endif
return -1;
}
return parm.sched_priority;
#elif FLEXT_THREADS == FLEXT_THR_WIN32
HANDLE hid = OpenThread(THREAD_ALL_ACCESS,TRUE,id);
int pr = GetThreadPriority(hid);
if(pr == THREAD_PRIORITY_ERROR_RETURN) {
# ifdef FLEXT_DEBUG
post("flext - failed to get thread priority");
# endif
return -1;
}
return pr;
#elif FLEXT_THREADS == FLEXT_THR_MP
thr_entry *ti = FLEXT_TEMPINST(ThrRegistry)::pending.Find(id);
if(!ti) ti = FLEXT_TEMPINST(ThrRegistry)::active.Find(id);
return ti?ti->weight:-1;
#else
# error
#endif
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::SetPriority(int p,thrid_t id)
{
#if FLEXT_THREADS == FLEXT_THR_POSIX
sched_param parm;
int policy;
if(pthread_getschedparam(id,&policy,&parm) < 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to get parms");
# endif
return false;
}
else {
parm.sched_priority = p;
if(pthread_setschedparam(id,policy,&parm) < 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to change priority");
# endif
return false;
}
}
return true;
#elif FLEXT_THREADS == FLEXT_THR_WIN32
HANDLE hid = OpenThread(THREAD_ALL_ACCESS,TRUE,id);
if(SetThreadPriority(hid,p) == 0) {
# ifdef FLEXT_DEBUG
post("flext - failed to change thread priority");
# endif
return false;
}
return true;
#elif FLEXT_THREADS == FLEXT_THR_MP
thr_entry *ti = FLEXT_TEMPINST(ThrRegistry)::pending.Find(id);
if(!ti) ti = FLEXT_TEMPINST(ThrRegistry)::active.Find(id);
return ti && MPSetTaskWeight(id,ti->weight = p) == noErr;
#else
# error
#endif
}
#if FLEXT_THREADS == FLEXT_THR_POSIX
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::ThrCond::Wait() {
this->Lock(); // use this-> to avoid wrong function invocation (global Unlock)
bool ret = pthread_cond_wait(&cond,&this->mutex) == 0;
this->Unlock(); // use this-> to avoid wrong function invocation (global Unlock)
return ret;
}
FLEXT_TEMPIMPL(bool FLEXT_CLASSDEF(flext))::ThrCond::TimedWait(double ftm)
{
timespec tm;
#if FLEXT_OS == FLEXT_OS_WIN && FLEXT_OSAPI == FLEXT_OSAPI_WIN_NATIVE
# ifdef _MSC_VER
_timeb tmb;
_ftime(&tmb);
# else
timeb tmb;
ftime(&tmb);
# endif
tm.tv_nsec = tmb.millitm*1000000;
tm.tv_sec = (long)tmb.time;
#else // POSIX
# if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
clock_gettime(CLOCK_REALTIME,&tm);
# else
struct timeval tp;
gettimeofday(&tp, NULL);
tm.tv_nsec = tp.tv_usec*1000;
tm.tv_sec = tp.tv_sec;
# endif
#endif
tm.tv_nsec += (long)((ftm-(long)ftm)*1.e9);
long nns = tm.tv_nsec%1000000000;
tm.tv_sec += (long)ftm+(tm.tv_nsec-nns)/1000000000;
tm.tv_nsec = nns;
this->Lock(); // use this-> to avoid wrong function invocation (global Unlock)
bool ret = pthread_cond_timedwait(&cond,&this->mutex,&tm) == 0;
this->Unlock(); // use this-> to avoid wrong function invocation (global Unlock)
return ret;
}
#endif
#include "flpopns.h"
#endif // FLEXT_THREADS
#endif // __FLEXT_THR_CPP
|