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
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
|
// Package : omnithread
// omnithread/posix.cc Created : 7/94 tjr
//
// Copyright (C) 2006 Free Software Foundation, Inc.
// Copyright (C) 1994-1999 AT&T Laboratories Cambridge
//
// This file is part of the omnithread library
//
// The omnithread library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free
// Software Foundation, Inc., 51 Franklin Street, Boston, MA
// 02110-1301, USA
//
//
// Implementation of OMNI thread abstraction for posix threads
//
// The source below tests for the definition of the macros:
// PthreadDraftVersion
// PthreadSupportThreadPriority
// NoNanoSleep
// NeedPthreadInit
//
// As different draft versions of the pthread standard P1003.4a/P1003.1c
// define slightly different APIs, the macro 'PthreadDraftVersion'
// identifies the draft version supported by this particular platform.
//
// Some unix variants do not support thread priority unless a real-time
// kernel option is installed. The macro 'PthreadSupportThreadPriority',
// if defined, enables the use of thread priority. If it is not defined,
// setting or changing thread priority will be silently ignored.
//
// nanosleep() is defined in Posix P1003.4 since Draft 9 (?).
// Not all platforms support this standard. The macro 'NoNanoSleep'
// identifies platform that don't.
//
#include <config.h>
#include <stdlib.h>
#include <errno.h>
#include <time.h>
#include <omnithread.h>
#ifdef HAVE_NANOSLEEP
#undef NoNanoSleep
#else
#define NoNanoSleep
#endif
#ifdef HAVE_SYS_TIME_H
// typedef of struct timeval and gettimeofday();
#include <sys/time.h>
#include <unistd.h>
#endif
#if defined(__linux__) && defined(_MIT_POSIX_THREADS)
#include <pthread/mit/sys/timers.h>
#endif
#if defined(__irix__) && defined(PthreadSupportThreadPriority)
#if _POSIX_THREAD_PRIORITY_SCHEDULING
#include <sched.h>
#endif
#endif
#define DB(x) // x
//#include <iostream.h> or #include <iostream> if DB is on.
#if (PthreadDraftVersion <= 6)
#define ERRNO(x) (((x) != 0) ? (errno) : 0)
#ifdef __VMS
// pthread_setprio returns old priority on success (draft version 4:
// OpenVms version < 7)
#define THROW_ERRORS(x) { if ((x) == -1) throw omni_thread_fatal(errno); }
#else
#define THROW_ERRORS(x) { if ((x) != 0) throw omni_thread_fatal(errno); }
#endif
#else
#define ERRNO(x) (x)
#define THROW_ERRORS(x) { int rc = (x); \
if (rc != 0) throw omni_thread_fatal(rc); }
#endif
///////////////////////////////////////////////////////////////////////////
//
// Mutex
//
///////////////////////////////////////////////////////////////////////////
omni_mutex::omni_mutex(void)
{
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_mutex_init(&posix_mutex, pthread_mutexattr_default));
#else
THROW_ERRORS(pthread_mutex_init(&posix_mutex, 0));
#endif
}
omni_mutex::~omni_mutex(void)
{
THROW_ERRORS(pthread_mutex_destroy(&posix_mutex));
}
///////////////////////////////////////////////////////////////////////////
//
// Condition variable
//
///////////////////////////////////////////////////////////////////////////
omni_condition::omni_condition(omni_mutex* m) : mutex(m)
{
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_cond_init(&posix_cond, pthread_condattr_default));
#else
THROW_ERRORS(pthread_cond_init(&posix_cond, 0));
#endif
}
omni_condition::~omni_condition(void)
{
THROW_ERRORS(pthread_cond_destroy(&posix_cond));
}
void
omni_condition::wait(void)
{
THROW_ERRORS(pthread_cond_wait(&posix_cond, &mutex->posix_mutex));
}
int
omni_condition::timedwait(unsigned long secs, unsigned long nanosecs)
{
timespec rqts = { secs, nanosecs };
again:
int rc = ERRNO(pthread_cond_timedwait(&posix_cond,
&mutex->posix_mutex, &rqts));
if (rc == 0)
return 1;
#if (PthreadDraftVersion <= 6)
if (rc == EAGAIN)
return 0;
#endif
// Some versions of unix produces this errno when the wait was
// interrupted by a unix signal or fork.
// Some versions of the glibc 2.0.x produces this errno when the
// program is debugged under gdb. Straightly speaking this is non-posix
// compliant. We catch this here to make debugging possible.
if (rc == EINTR)
goto again;
if (rc == ETIMEDOUT)
return 0;
throw omni_thread_fatal(rc);
#ifdef _MSC_VER
return 0;
#endif
}
void
omni_condition::signal(void)
{
THROW_ERRORS(pthread_cond_signal(&posix_cond));
}
void
omni_condition::broadcast(void)
{
THROW_ERRORS(pthread_cond_broadcast(&posix_cond));
}
///////////////////////////////////////////////////////////////////////////
//
// Counting (or binary) semaphore
//
///////////////////////////////////////////////////////////////////////////
omni_semaphore::omni_semaphore(unsigned int initial, unsigned int _max_count) : c(&m)
{
value = initial;
max_count = _max_count;
if (value < 0 || max_count < 1)
throw omni_thread_fatal(0);
}
omni_semaphore::~omni_semaphore(void)
{
}
void
omni_semaphore::wait(void)
{
omni_mutex_lock l(m);
while (value == 0)
c.wait();
value--;
}
int
omni_semaphore::trywait(void)
{
omni_mutex_lock l(m);
if (value == 0)
return 0;
value--;
return 1;
}
void
omni_semaphore::post(void)
{
{
omni_mutex_lock l(m);
if (value < max_count)
value++;
}
c.signal();
}
///////////////////////////////////////////////////////////////////////////
//
// Thread
//
///////////////////////////////////////////////////////////////////////////
//
// static variables
//
omni_mutex* omni_thread::next_id_mutex;
int omni_thread::next_id = 0;
static pthread_key_t self_key;
#ifdef PthreadSupportThreadPriority
static int lowest_priority;
static int normal_priority;
static int highest_priority;
#endif
#if defined(__osf1__) && defined(__alpha__) || defined(__VMS)
// omniORB requires a larger stack size than the default (21120) on OSF/1
static size_t stack_size = 32768;
#elif defined(__rtems__)
static size_t stack_size = ThreadStackSize;
#elif defined(__aix__)
static size_t stack_size = 262144;
#else
static size_t stack_size = 0;
#endif
//
// Initialisation function (gets called before any user code).
//
static int& count() {
static int the_count = 0;
return the_count;
}
omni_thread::init_t::init_t(void)
{
if (count()++ != 0) // only do it once however many objects get created.
return;
DB(cerr << "omni_thread::init: posix 1003.4a/1003.1c (draft "
<< PthreadDraftVersion << ") implementation initialising\n");
#ifdef NeedPthreadInit
pthread_init();
#endif
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_keycreate(&self_key, NULL));
#else
THROW_ERRORS(pthread_key_create(&self_key, NULL));
#endif
#ifdef PthreadSupportThreadPriority
#if defined(__osf1__) && defined(__alpha__) || defined(__VMS)
lowest_priority = PRI_OTHER_MIN;
highest_priority = PRI_OTHER_MAX;
#elif defined(__hpux__)
lowest_priority = PRI_OTHER_MIN;
highest_priority = PRI_OTHER_MAX;
#elif defined(__sunos__) && (__OSVERSION__ == 5)
// a bug in pthread_attr_setschedparam means lowest priority is 1 not 0
lowest_priority = 1;
highest_priority = 3;
#else
lowest_priority = sched_get_priority_min(SCHED_FIFO);
highest_priority = sched_get_priority_max(SCHED_FIFO);
#endif
switch (highest_priority - lowest_priority) {
case 0:
case 1:
normal_priority = lowest_priority;
break;
default:
normal_priority = lowest_priority + 1;
break;
}
#endif /* PthreadSupportThreadPriority */
next_id_mutex = new omni_mutex;
//
// Create object for this (i.e. initial) thread.
//
omni_thread* t = new omni_thread;
t->_state = STATE_RUNNING;
t->posix_thread = pthread_self ();
DB(cerr << "initial thread " << t->id() << endl);
THROW_ERRORS(pthread_setspecific(self_key, (void*)t));
#ifdef PthreadSupportThreadPriority
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_setprio(t->posix_thread,
posix_priority(PRIORITY_NORMAL)));
#elif (PthreadDraftVersion == 6)
pthread_attr_t attr;
pthread_attr_init(&attr);
THROW_ERRORS(pthread_attr_setprio(&attr, posix_priority(PRIORITY_NORMAL)));
THROW_ERRORS(pthread_setschedattr(t->posix_thread, attr));
#else
struct sched_param sparam;
sparam.sched_priority = posix_priority(PRIORITY_NORMAL);
THROW_ERRORS(pthread_setschedparam(t->posix_thread, SCHED_OTHER, &sparam));
#endif /* PthreadDraftVersion */
#endif /* PthreadSupportThreadPriority */
}
omni_thread::init_t::~init_t(void)
{
if (--count() != 0) return;
omni_thread* self = omni_thread::self();
if (!self) return;
pthread_setspecific(self_key, 0);
delete self;
delete next_id_mutex;
}
//
// Wrapper for thread creation.
//
extern "C" void*
omni_thread_wrapper(void* ptr)
{
omni_thread* me = (omni_thread*)ptr;
DB(cerr << "omni_thread_wrapper: thread " << me->id()
<< " started\n");
THROW_ERRORS(pthread_setspecific(self_key, me));
//
// Now invoke the thread function with the given argument.
//
if (me->fn_void != NULL) {
(*me->fn_void)(me->thread_arg);
omni_thread::exit();
}
if (me->fn_ret != NULL) {
void* return_value = (*me->fn_ret)(me->thread_arg);
omni_thread::exit(return_value);
}
if (me->detached) {
me->run(me->thread_arg);
omni_thread::exit();
} else {
void* return_value = me->run_undetached(me->thread_arg);
omni_thread::exit(return_value);
}
// should never get here.
return NULL;
}
//
// Constructors for omni_thread - set up the thread object but don't
// start it running.
//
// construct a detached thread running a given function.
omni_thread::omni_thread(void (*fn)(void*), void* arg, priority_t pri)
{
common_constructor(arg, pri, 1);
fn_void = fn;
fn_ret = NULL;
}
// construct an undetached thread running a given function.
omni_thread::omni_thread(void* (*fn)(void*), void* arg, priority_t pri)
{
common_constructor(arg, pri, 0);
fn_void = NULL;
fn_ret = fn;
}
// construct a thread which will run either run() or run_undetached().
omni_thread::omni_thread(void* arg, priority_t pri)
{
common_constructor(arg, pri, 1);
fn_void = NULL;
fn_ret = NULL;
}
// common part of all constructors.
void
omni_thread::common_constructor(void* arg, priority_t pri, int det)
{
_state = STATE_NEW;
_priority = pri;
next_id_mutex->lock();
_id = next_id++;
next_id_mutex->unlock();
thread_arg = arg;
detached = det; // may be altered in start_undetached()
_dummy = 0;
_values = 0;
_value_alloc = 0;
// posix_thread is set up in initialisation routine or start().
}
//
// Destructor for omni_thread.
//
omni_thread::~omni_thread(void)
{
DB(cerr << "destructor called for thread " << id() << endl);
if (_values) {
for (key_t i=0; i < _value_alloc; i++) {
if (_values[i]) {
delete _values[i];
}
}
delete [] _values;
}
}
//
// Start the thread
//
void
omni_thread::start(void)
{
omni_mutex_lock l(mutex);
if (_state != STATE_NEW)
throw omni_thread_invalid();
pthread_attr_t attr;
#if (PthreadDraftVersion == 4)
pthread_attr_create(&attr);
#else
pthread_attr_init(&attr);
#endif
#if (PthreadDraftVersion == 8)
pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_UNDETACHED);
#endif
#ifdef PthreadSupportThreadPriority
#if (PthreadDraftVersion <= 6)
THROW_ERRORS(pthread_attr_setprio(&attr, posix_priority(_priority)));
#else
struct sched_param sparam;
sparam.sched_priority = posix_priority(_priority);
THROW_ERRORS(pthread_attr_setschedparam(&attr, &sparam));
#endif /* PthreadDraftVersion */
#endif /* PthreadSupportThreadPriority */
#if !defined(__linux__)
if (stack_size) {
THROW_ERRORS(pthread_attr_setstacksize(&attr, stack_size));
}
#endif
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_create(&posix_thread, attr, omni_thread_wrapper,
(void*)this));
pthread_attr_delete(&attr);
#else
THROW_ERRORS(pthread_create(&posix_thread, &attr, omni_thread_wrapper,
(void*)this));
pthread_attr_destroy(&attr);
#endif
_state = STATE_RUNNING;
if (detached) {
#if (PthreadDraftVersion <= 6)
THROW_ERRORS(pthread_detach(&posix_thread));
#else
THROW_ERRORS(pthread_detach(posix_thread));
#endif
}
}
//
// Start a thread which will run the member function run_undetached().
//
void
omni_thread::start_undetached(void)
{
if ((fn_void != NULL) || (fn_ret != NULL))
throw omni_thread_invalid();
detached = 0;
start();
}
//
// join - simply check error conditions & call pthread_join.
//
void
omni_thread::join(void** status)
{
mutex.lock();
if ((_state != STATE_RUNNING) && (_state != STATE_TERMINATED)) {
mutex.unlock();
throw omni_thread_invalid();
}
mutex.unlock();
if (this == self())
throw omni_thread_invalid();
if (detached)
throw omni_thread_invalid();
DB(cerr << "omni_thread::join: doing pthread_join\n");
THROW_ERRORS(pthread_join(posix_thread, status));
DB(cerr << "omni_thread::join: pthread_join succeeded\n");
#if (PthreadDraftVersion == 4)
// With draft 4 pthreads implementations (HPUX 10.x and
// Digital Unix 3.2), have to detach the thread after
// join. If not, the storage for the thread will not be
// be reclaimed.
THROW_ERRORS(pthread_detach(&posix_thread));
#endif
delete this;
}
//
// Change this thread's priority.
//
void
omni_thread::set_priority(priority_t pri)
{
omni_mutex_lock l(mutex);
if (_state != STATE_RUNNING)
throw omni_thread_invalid();
_priority = pri;
#ifdef PthreadSupportThreadPriority
#if (PthreadDraftVersion == 4)
THROW_ERRORS(pthread_setprio(posix_thread, posix_priority(pri)));
#elif (PthreadDraftVersion == 6)
pthread_attr_t attr;
pthread_attr_init(&attr);
THROW_ERRORS(pthread_attr_setprio(&attr, posix_priority(pri)));
THROW_ERRORS(pthread_setschedattr(posix_thread, attr));
#else
struct sched_param sparam;
sparam.sched_priority = posix_priority(pri);
THROW_ERRORS(pthread_setschedparam(posix_thread, SCHED_OTHER, &sparam));
#endif /* PthreadDraftVersion */
#endif /* PthreadSupportThreadPriority */
}
//
// create - construct a new thread object and start it running. Returns thread
// object if successful, null pointer if not.
//
// detached version
omni_thread*
omni_thread::create(void (*fn)(void*), void* arg, priority_t pri)
{
omni_thread* t = new omni_thread(fn, arg, pri);
t->start();
return t;
}
// undetached version
omni_thread*
omni_thread::create(void* (*fn)(void*), void* arg, priority_t pri)
{
omni_thread* t = new omni_thread(fn, arg, pri);
t->start();
return t;
}
//
// exit() _must_ lock the mutex even in the case of a detached thread. This is
// because a thread may run to completion before the thread that created it has
// had a chance to get out of start(). By locking the mutex we ensure that the
// creating thread must have reached the end of start() before we delete the
// thread object. Of course, once the call to start() returns, the user can
// still incorrectly refer to the thread object, but that's their problem.
//
void
omni_thread::exit(void* return_value)
{
omni_thread* me = self();
if (me)
{
me->mutex.lock();
me->_state = STATE_TERMINATED;
me->mutex.unlock();
DB(cerr << "omni_thread::exit: thread " << me->id() << " detached "
<< me->detached << " return value " << return_value << endl);
if (me->detached)
delete me;
}
else
{
DB(cerr << "omni_thread::exit: called with a non-omnithread. Exit quietly." << endl);
}
pthread_exit(return_value);
}
omni_thread*
omni_thread::self(void)
{
omni_thread* me;
#if (PthreadDraftVersion <= 6)
THROW_ERRORS(pthread_getspecific(self_key, (void**)&me));
#else
me = (omni_thread *)pthread_getspecific(self_key);
#endif
if (!me) {
// This thread is not created by omni_thread::start because it
// doesn't has a class omni_thread instance attached to its key.
DB(cerr << "omni_thread::self: called with a non-omnithread. NULL is returned." << endl);
}
return me;
}
void
omni_thread::yield(void)
{
#if (PthreadDraftVersion == 6)
pthread_yield(NULL);
#elif (PthreadDraftVersion < 9)
pthread_yield();
#else
THROW_ERRORS(sched_yield());
#endif
}
void
omni_thread::sleep(unsigned long secs, unsigned long nanosecs)
{
timespec rqts = { secs, nanosecs };
#ifndef NoNanoSleep
timespec remain;
while (nanosleep(&rqts, &remain)) {
if (errno == EINTR) {
rqts.tv_sec = remain.tv_sec;
rqts.tv_nsec = remain.tv_nsec;
continue;
}
else
throw omni_thread_fatal(errno);
}
#else
#if defined(__osf1__) && defined(__alpha__) || defined(__hpux__) && (__OSVERSION__ == 10) || defined(__VMS) || defined(__SINIX__) || defined (__POSIX_NT__)
if (pthread_delay_np(&rqts) != 0)
throw omni_thread_fatal(errno);
#elif defined(__linux__) || defined(__aix__)
if (secs > 2000) {
while ((secs = ::sleep(secs))) ;
} else {
usleep(secs * 1000000 + (nanosecs / 1000));
}
#elif defined(__darwin__) || defined(__macos__)
// Single UNIX Specification says argument of usleep() must be
// less than 1,000,000.
secs += nanosecs / 1000000000;
nanosecs %= 1000000000;
while ((secs = ::sleep(secs))) ;
usleep(nanosecs / 1000);
#else
throw omni_thread_invalid();
#endif
#endif /* NoNanoSleep */
}
void
omni_thread::get_time(unsigned long* abs_sec, unsigned long* abs_nsec,
unsigned long rel_sec, unsigned long rel_nsec)
{
timespec abs;
#if defined(__osf1__) && defined(__alpha__) || defined(__hpux__) && (__OSVERSION__ == 10) || defined(__VMS) || defined(__SINIX__) || defined(__POSIX_NT__)
timespec rel;
rel.tv_sec = rel_sec;
rel.tv_nsec = rel_nsec;
THROW_ERRORS(pthread_get_expiration_np(&rel, &abs));
#else
#ifdef HAVE_CLOCK_GETTIME /* __linux__ || __aix__ */
clock_gettime(CLOCK_REALTIME, &abs);
#elif defined(HAVE_GETTIMEOFDAY) /* defined(__linux__) || defined(__aix__) || defined(__SCO_VERSION__) || defined(__darwin__) || defined(__macos__) */
struct timeval tv;
gettimeofday(&tv, NULL);
abs.tv_sec = tv.tv_sec;
abs.tv_nsec = tv.tv_usec * 1000;
#else
#error no get time support
#endif /* __linux__ || __aix__ */
abs.tv_nsec += rel_nsec;
abs.tv_sec += rel_sec + abs.tv_nsec / 1000000000;
abs.tv_nsec = abs.tv_nsec % 1000000000;
#endif /* __osf1__ && __alpha__ */
*abs_sec = abs.tv_sec;
*abs_nsec = abs.tv_nsec;
}
int
omni_thread::posix_priority(priority_t pri)
{
#ifdef PthreadSupportThreadPriority
switch (pri) {
case PRIORITY_LOW:
return lowest_priority;
case PRIORITY_NORMAL:
return normal_priority;
case PRIORITY_HIGH:
return highest_priority;
}
#endif
throw omni_thread_invalid();
#ifdef _MSC_VER
return 0;
#endif
}
void
omni_thread::stacksize(unsigned long sz)
{
stack_size = sz;
}
unsigned long
omni_thread::stacksize()
{
return stack_size;
}
//
// Dummy thread
//
class omni_thread_dummy : public omni_thread {
public:
inline omni_thread_dummy() : omni_thread()
{
_dummy = 1;
_state = STATE_RUNNING;
posix_thread = pthread_self();
THROW_ERRORS(pthread_setspecific(self_key, (void*)this));
}
inline ~omni_thread_dummy()
{
THROW_ERRORS(pthread_setspecific(self_key, 0));
}
};
omni_thread*
omni_thread::create_dummy()
{
if (omni_thread::self())
throw omni_thread_invalid();
return new omni_thread_dummy;
}
void
omni_thread::release_dummy()
{
omni_thread* self = omni_thread::self();
if (!self || !self->_dummy)
throw omni_thread_invalid();
omni_thread_dummy* dummy = (omni_thread_dummy*)self;
delete dummy;
}
#define INSIDE_THREAD_IMPL_CC
#include "threaddata.cc"
#undef INSIDE_THREAD_IMPL_CC
|