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 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
|
/*
* The contents of this file are subject to the AOLserver Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://aolserver.com/.
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is AOLserver Code and related documentation
* distributed by AOL.
*
* The Initial Developer of the Original Code is America Online,
* Inc. Portions created by AOL are Copyright (C) 1999 America Online,
* Inc. All Rights Reserved.
*
* Alternatively, the contents of this file may be used under the terms
* of the GNU General Public License (the "GPL"), in which case the
* provisions of GPL are applicable instead of those above. If you wish
* to allow use of your version of this file only under the terms of the
* GPL and not to allow others to use your version of this file under the
* License, indicate your decision by deleting the provisions above and
* replace them with the notice and other provisions required by the GPL.
* If you do not delete the provisions above, a recipient may use your
* version of this file under either the License or the GPL.
*/
/*
* pthread.c --
*
* Interface routines for nsthreads using Unix pthreads.
*/
#include "thread.h"
#include <pthread.h>
/*
* This interface supports both Draft4 Pthreads on HP/10 and final
* Posix 1003.1c Pthreads on all other platforms. Because NsThreads
* implements most higher level functions directly (tls, semaphore,
* etc.), only a subset of the pthread routines are required which
* reduces the differences between the two interfaces to little more
* than how errors are returned (error result vs. -1 and errno), a
* few function and argument type changes, and special treatment
* for the pthread_mutex_trylock, pthread_cond_timedwait, and
* pthread_getspecific routines.
*/
#ifndef HAVE_PTHREAD_D4
#include <sched.h> /* sched_yield() */
#define ERRLOCKOK(e) ((e) == 0)
#define ERRLOCKBUSY(e) ((e) == EBUSY)
#define ERRTIMEDOUT(e) ((e) == ETIMEDOUT)
#define MUTEX_INIT_ATTR 0
#define COND_INIT_ATTR 0
#else
#define ERRLOCKOK(e) ((e) == 1)
#define ERRLOCKBUSY(e) ((e) == 0)
#define ERRTIMEDOUT(e) (((e) != 0) && (errno == EAGAIN))
#define NsThreadFatal(n,p,e) NsThreadFatal((n),(p),(errno))
#define pthread_detach(t) pthread_detach(&(t))
#define pthread_create(t,a,p,c) pthread_create((t), *(a), (p), (c))
#define pthread_key_create pthread_keycreate
#define pthread_attr_init pthread_attr_create
#define pthread_attr_destroy pthread_attr_delete
#define pthread_sigmask sigprocmask
#define sched_yield pthread_yield
#define MUTEX_INIT_ATTR pthread_mutexattr_default
#define COND_INIT_ATTR pthread_condattr_default
#define PTHREAD_ONCE_INIT pthread_once_init
#endif
#if defined(MACOSX)
#define pthread_sigmask sigprocmask
#endif
/*
* The following structure and one-time init callback are used
* for the pthread-specific master lock.
*/
struct {
int count; /* Recursive lock count. */
pthread_t owner; /* Current lock owner. */
pthread_mutex_t lock; /* Lock for master structure. */
pthread_cond_t cond; /* Condition to wakeup waiter. */
} master;
static void InitMaster(void);
/*
* The following pthread tls key and callback are used to
* maintain the single slot for storing nsthreads context.
*/
static pthread_key_t GetKey(void);
static void CleanupThread(void *arg);
/*
*----------------------------------------------------------------------
*
* NsThreadLibName --
*
* Return the string name of the thread library.
*
* Results:
* Pointer to static string.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
char *
NsThreadLibName(void)
{
return "pthread";
}
/*
*----------------------------------------------------------------------
*
* Ns_MasterLock --
*
* Enter the single master critical section lock.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void
Ns_MasterLock(void)
{
static pthread_once_t once = PTHREAD_ONCE_INIT;
static char *func = "Ns_MasterLock";
pthread_t self = pthread_self();
int err;
/*
* Initialize the master lock and condition the first time.
*/
err = pthread_once(&once, InitMaster);
if (err != 0) {
NsThreadFatal(func, "pthread_once", err);
}
/*
* Enter the critical section.
*/
err = pthread_mutex_lock(&master.lock);
if (err != 0) {
NsThreadFatal(func, "pthread_mutex_lock", err);
}
while (master.owner != self && master.count > 0) {
pthread_cond_wait(&master.cond, &master.lock);
if (err != 0) {
NsThreadFatal(func, "pthread_cond_wait", err);
}
}
master.owner = self;
++master.count;
err = pthread_mutex_unlock(&master.lock);
if (err != 0) {
NsThreadFatal(func, "pthread_mutex_unlock", err);
}
}
/*
*----------------------------------------------------------------------
*
* Ns_MasterUnlock --
*
* Leave the single master critical section lock.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void
Ns_MasterUnlock(void)
{
static char *func = "Ns_MasterUnlock";
pthread_t self = pthread_self();
int err;
err = pthread_mutex_lock(&master.lock);
if (err != 0) {
NsThreadFatal(func, "pthread_mutex_lock", err);
}
if (master.owner == self && --master.count == 0) {
master.owner = 0;
err = pthread_cond_signal(&master.cond);
if (err != 0) {
NsThreadFatal(func, "pthread_cond_signal", err);
}
}
err = pthread_mutex_unlock(&master.lock);
if (err != 0) {
NsThreadFatal(func, "pthread_mutex_unlock", err);
}
}
/*
*----------------------------------------------------------------------
*
* NsLockAlloc --
*
* Allocate a mutex lock.
*
* Results:
* Pointer to pthread lock.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void *
NsLockAlloc(void)
{
static char *func = "NsMutexInit";
pthread_mutex_t *lockPtr;
#ifdef USE_PTHREAD_PSHARED
pthread_mutexattr_t attr;
#endif
int err;
lockPtr = NsAlloc(sizeof(pthread_mutex_t));
#ifndef USE_PTHREAD_PSHARED
err = pthread_mutex_init(lockPtr, MUTEX_INIT_ATTR);
#else
err = pthread_mutexattr_init(&attr);
if (err != 0) {
NsThreadFatal(func, "ptread_mutexattr_init", err);
}
err = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
if (err != 0) {
NsThreadFatal(func, "ptread_mutexattr_setpshared", err);
}
err = pthread_mutex_init(lockPtr, &attr);
#endif
if (err != 0) {
NsThreadFatal(func, "ptread_mutex_init", err);
}
#ifdef USE_PTHREAD_PSHARED
err = pthread_mutexattr_destroy(&attr);
if (err != 0) {
NsThreadFatal(func, "ptread_mutexattr_destroy", err);
}
#endif
return lockPtr;
}
/*
*----------------------------------------------------------------------
*
* NsLockFree --
*
* Free a mutex lock.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void
NsLockFree(void *lock)
{
pthread_mutex_t *lockPtr = lock;
int err;
err = pthread_mutex_destroy(lockPtr);
if (err != 0) {
NsThreadFatal("NsMutexDestroy", "ptread_mutex_destroy", err);
}
NsFree(lockPtr);
}
/*
*----------------------------------------------------------------------
*
* NsLockSet --
*
* Set a mutex lock.
*
* Results:
* None.
*
* Side effects:
* See pthread_mutex_lock.
*
*----------------------------------------------------------------------
*/
void
NsLockSet(void *lock)
{
pthread_mutex_t *lockPtr = lock;
int err;
err = pthread_mutex_lock(lockPtr);
if (err != 0) {
NsThreadFatal("NsMutexLock", "ptread_mutex_lock", err);
}
}
/*
*----------------------------------------------------------------------
*
* NsLockTry --
*
* Try to set a mutex lock once.
*
* Results:
* 1 if locked, 0 if lock already held.
*
* Side effects:
* See pthread_mutex_trylock.
*
*----------------------------------------------------------------------
*/
int
NsLockTry(void *lock)
{
pthread_mutex_t *lockPtr = lock;
int err;
err = pthread_mutex_trylock(lockPtr);
if (ERRLOCKBUSY(err)) {
return 0;
} else if (!(ERRLOCKOK(err))) {
NsThreadFatal("NsMutexTryLock", "ptread_mutex_trylock", err);
}
return 1;
}
/*
*----------------------------------------------------------------------
*
* NsLockUnlock --
*
* Release a mutex lock.
*
* Results:
* None.
*
* Side effects:
* See pthread_mutex_unlock.
*
*----------------------------------------------------------------------
*/
void
NsLockUnset(void *lock)
{
pthread_mutex_t *lockPtr = lock;
int err;
err = pthread_mutex_unlock(lockPtr);
if (err != 0) {
NsThreadFatal("NsMutexUnlock", "pthread_mutex_unlock", err);
}
}
/*
*----------------------------------------------------------------------
*
* Ns_CondInit --
*
* Pthread condition variable initialization. Note this routine
* isn't used directly very often as static condition variables
* are now self initialized when first used.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void
Ns_CondInit(Ns_Cond *condPtr)
{
static char *func = "Ns_CondInit";
pthread_cond_t *cond;
int err;
#ifdef USE_PTHREAD_PSHARED
pthread_condattr_t attr;
#endif
cond = NsAlloc(sizeof(pthread_cond_t));
#ifndef USE_PTHREAD_PSHARED
err = pthread_cond_init(cond, COND_INIT_ATTR);
#else
err = pthread_condattr_init(&attr);
if (err != 0) {
NsThreadFatal(func, "ptread_condattr_init", err);
}
err = pthread_condattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
if (err != 0) {
NsThreadFatal(func, "ptread_condattr_setpshared", err);
}
err = pthread_cond_init(cond, &attr);
#endif
if (err != 0) {
NsThreadFatal(func, "pthread_cond_init", err);
}
#ifdef USE_PTHREAD_PSHARED
err = pthread_condattr_destroy(&attr);
if (err != 0) {
NsThreadFatal(func, "ptread_condattr_destroy", err);
}
#endif
*condPtr = (Ns_Cond) cond;
}
/*
*----------------------------------------------------------------------
*
* Ns_CondDestroy --
*
* Pthread condition destroy. Note this routine is almost never
* used as condition variables normally exist in memory until
* the process exits.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
void
Ns_CondDestroy(Ns_Cond *condPtr)
{
pthread_cond_t *cond = GETCOND(condPtr);
int err;
err = pthread_cond_destroy(cond);
if (err != 0) {
NsThreadFatal("Ns_CondDestroy", "pthread_cond_destroy", err);
}
NsFree(cond);
*condPtr = NULL;
}
/*
*----------------------------------------------------------------------
*
* Ns_CondSignal --
*
* Pthread condition signal.
*
* Results:
* None.
*
* Side effects:
* See pthread_cond_signal.
*
*----------------------------------------------------------------------
*/
void
Ns_CondSignal(Ns_Cond *condPtr)
{
pthread_cond_t *cond = GETCOND(condPtr);
int err;
err = pthread_cond_signal(cond);
if (err != 0) {
NsThreadFatal("Ns_CondSignal", "pthread_cond_signal", err);
}
}
/*
*----------------------------------------------------------------------
*
* Ns_CondBroadcast --
*
* Pthread condition broadcast.
*
* Results:
* None.
*
* Side effects:
* See pthread_cond_broadcast.
*
*----------------------------------------------------------------------
*/
void
Ns_CondBroadcast(Ns_Cond *condPtr)
{
pthread_cond_t *cond = GETCOND(condPtr);
int err;
err = pthread_cond_broadcast(cond);
if (err != 0) {
NsThreadFatal("Ns_CondBroadcast", "pthread_cond_broadcast", err);
}
}
/*
*----------------------------------------------------------------------
*
* Ns_CondWait --
*
* Pthread indefinite condition wait.
*
* Results:
* None.
*
* Side effects:
* See pthread_cond_wait.
*
*----------------------------------------------------------------------
*/
void
Ns_CondWait(Ns_Cond *condPtr, Ns_Mutex *mutexPtr)
{
pthread_cond_t *cond;
pthread_mutex_t *lockPtr;
Thread *ownerPtr;
Mutex *mPtr;
int err;
cond = GETCOND(condPtr);
mPtr = GETMUTEX(mutexPtr);
/*
* Save and then clear the outer mutex owner field before
* pthread_cond_wait releases the lock in case lock metering
* is enabled.
*/
ownerPtr = mPtr->ownerPtr;
mPtr->ownerPtr = NULL;
lockPtr = mPtr->lock;
err = pthread_cond_wait(cond, lockPtr);
#ifdef HAVE_ETIME_BUG
/*
* On Solaris, we have noticed that when the condition and/or
* mutex are process-shared instead of process-private that
* pthread_cond_wait may incorrectly return ETIME. Because
* we're not sure why ETIME is being returned (perhaps it's
* from an underlying _lwp_cond_timedwait???), we allow
* the condition to return. This should be o.k. because
* properly written condition code must be in a while
* loop capable of handling spurious wakeups.
*/
if (err == ETIME) {
err = 0;
}
#endif
if (err != 0) {
NsThreadFatal("Ns_CondWait", "pthread_cond_wait", err);
}
/*
* Restore the outer mutex owner and increment the lock count.
*/
mPtr->ownerPtr = ownerPtr;
++mPtr->nlock;
}
/*
*----------------------------------------------------------------------
*
* Ns_CondTimedWait --
*
* Pthread absolute time wait.
*
* Results:
* None.
*
* Side effects:
* See pthread_cond_timewait.
*
*----------------------------------------------------------------------
*/
int
Ns_CondTimedWait(Ns_Cond *condPtr, Ns_Mutex *mutexPtr, Ns_Time *timePtr)
{
pthread_cond_t *cond;
pthread_mutex_t *lockPtr;
Thread *ownerPtr;
Mutex *mPtr;
int err, status;
struct timespec ts;
if (timePtr == NULL) {
Ns_CondWait(condPtr, mutexPtr);
return NS_OK;
}
cond = GETCOND(condPtr);
mPtr = GETMUTEX(mutexPtr);
lockPtr = mPtr->lock;
ownerPtr = mPtr->ownerPtr;
mPtr->ownerPtr = NULL;
/*
* Convert the microsecond-based Ns_Time to a nanosecond-based
* struct timespec.
*/
ts.tv_sec = timePtr->sec;
ts.tv_nsec = timePtr->usec * 1000;
/*
* As documented on Linux, pthread_cond_timedwait may return
* EINTR if a signal arrives. We have noticed that
* EINTR can be returned on Solaris as well although this
* is not documented (perhaps, as above, it's possible it
* bubbles up from _lwp_cond_timedwait???). Anyway, unlike
* the ETIME case above, we'll assume the wakeup is truely
* spurious and simply restart the wait knowing that the
* ts structure has not been modified.
*/
do {
err = pthread_cond_timedwait(cond, lockPtr, &ts);
} while (err == EINTR);
#ifdef HAVE_ETIME_BUG
/*
* See comments above and note that here ETIME is still considered
* a spurious wakeup, not an indication of timeout because we're
* not making any assumptions about the nature or this bug.
* While we're less certain, this should still be ok as properly
* written condition code should tolerate the wakeup.
*/
if (err == ETIME) {
err = 0;
}
#endif
if (ERRTIMEDOUT(err)) {
status = NS_TIMEOUT;
} else if (err != 0) {
NsThreadFatal("Ns_CondTimedWait", "pthread_cond_timedwait", err);
} else {
status = NS_OK;
}
mPtr->ownerPtr = ownerPtr;
++mPtr->nlock;
return status;
}
/*
*----------------------------------------------------------------------
*
* NsSetThread --
*
* Pthread routine to set this thread's nsthread data structure
* and update the tid.
*
* Results:
* None
*
* Side effects:
* Key is allocated the first time.
*
*----------------------------------------------------------------------
*/
void
NsSetThread(Thread *thrPtr)
{
pthread_t thread;
int err;
thread = pthread_self();
#ifdef HAVE_PTHREAD_D4
thrPtr->tid = pthread_getunique_np(&thread);
#else
thrPtr->tid = (int) thread;
#endif
err = pthread_setspecific(GetKey(), thrPtr);
if (err != 0) {
NsThreadFatal("NsSetThread", "pthread_setspecific", err);
}
}
/*
*----------------------------------------------------------------------
*
* NsGetThread --
*
* Pthread routine to return this thread's nsthread data structure.
* If this thread doesn't have a Thread structure (e.g., the
* initial thread or a thread created without nsthreads from
* Java), a default structure is allocated and set.
*
* Results:
* Pointer to per-thread data structure.
*
* Side effects:
* Key is allocated the first time.
*
*----------------------------------------------------------------------
*/
Thread *
NsGetThread(void)
{
Thread *thisPtr;
#ifdef HAVE_PTHREAD_D4
if (pthread_getspecific(GetKey(), (pthread_addr_t *) &thisPtr) != 0) {
thisPtr = NULL;
}
#else
thisPtr = (Thread *) pthread_getspecific(GetKey());
#endif
if (thisPtr == NULL) {
thisPtr = NsNewThread();
NsSetThread(thisPtr);
}
return thisPtr;
}
/*
*----------------------------------------------------------------------
*
* NsThreadCreate --
*
* Pthread thread creation. All nsthreads are created as detached
* pthreads as the nsthread library handles joining itself in an
* interface independent manner.
*
* Results:
* None.
*
* Side effects:
* See pthread_create and pthread_detach.
*
*----------------------------------------------------------------------
*/
void
NsThreadCreate(Thread *thrPtr)
{
pthread_t thr;
pthread_attr_t attr, *attrPtr;
static char *func = "NsThreadCreate";
int err;
/*
* Set the stack size. It could be smarter to leave the default
* on platforms which map large stacks with guard zones
* (e.g., Solaris and Linux).
*/
err = pthread_attr_init(&attr);
if (err != 0) {
NsThreadFatal(func, "pthread_attr_init", err);
}
err = pthread_attr_setstacksize(&attr, thrPtr->stackSize);
if (err != 0) {
NsThreadFatal(func, "pthread_attr_setstacksize", err);
}
/*
* System scope threads are used by default on Solaris and UnixWare.
* Other platforms are either already system scope (Linux, HP11),
* support only process scope (SGI), user-level thread libraries
* anyway (HP10, FreeBSD), or found to be unstable with this
* setting (OSF).
*/
#ifdef USE_PTHREAD_SYSSCOPE
err = pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
if (err != 0) {
NsThreadFatal(func, "pthread_attr_setscope",err);
}
#endif
err = pthread_create(&thr, &attr, (void *(*)(void *)) NsThreadMain, thrPtr);
if (err != 0) {
NsThreadFatal(func, "pthread_create", err);
}
err = pthread_detach(thr);
if (err != 0) {
NsThreadFatal(func, "pthread_detach", err);
}
err = pthread_attr_destroy(&attr);
if (err != 0) {
NsThreadFatal(func, "pthread_attr_destroy", err);
}
}
/*
*----------------------------------------------------------------------
*
* NsThreadExit --
*
* Pthread exit routine.
*
* Results:
* None.
*
* Side effects:
* See CleanupThread which will be called by pthread's tls
* destructors.
*
*----------------------------------------------------------------------
*/
void
NsThreadExit(void)
{
pthread_exit(NULL);
}
/*
*----------------------------------------------------------------------
*
* Ns_ThreadYield --
*
* Yield the cpu to another thread.
*
* Results:
* None.
*
* Side effects:
* See sched_yield().
*
*----------------------------------------------------------------------
*/
void
Ns_ThreadYield(void)
{
sched_yield();
}
/*
*----------------------------------------------------------------------
*
* ns_sigmask --
*
* Set the thread's signal mask.
*
* Results:
* 0 on success, otherwise an error code.
*
* Side effects:
* See pthread_sigmask.
*
*----------------------------------------------------------------------
*/
int
ns_sigmask(int how, sigset_t *set, sigset_t *oset)
{
return pthread_sigmask(how, set, oset);
}
/*
*----------------------------------------------------------------------
*
* InitMaster --
*
* Once routine to initialize the pthread master lock.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static void
InitMaster(void)
{
int err;
master.owner = 0;
master.count = 0;
err = pthread_mutex_init(&master.lock, NULL);
if (err != 0) {
NsThreadFatal("InitMaster", "pthread_mutex_init", err);
}
err = pthread_cond_init(&master.cond, NULL);
if (err != 0) {
NsThreadFatal("InitMaster", "pthread_cond_init", err);
}
}
/*
*----------------------------------------------------------------------
*
* GetKey --
*
* Return the single pthread TLS key, initalizing if needed.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static pthread_key_t
GetKey(void)
{
static pthread_key_t key;
static volatile int initialized;
int err;
if (!initialized) {
Ns_MasterLock();
if (!initialized) {
err = pthread_key_create(&key, CleanupThread);
if (err != 0) {
NsThreadFatal("GetKey", "pthread_key_create", err);
}
initialized = 1;
}
Ns_MasterUnlock();
}
return key;
}
/*
*----------------------------------------------------------------------
*
* CleanupThread --
*
* Pthread TLS callback for the nsthread context.
*
* Results:
* None.
*
* Side effects:
* See NsCleanupThread.
*
*----------------------------------------------------------------------
*/
static void
CleanupThread(void *arg)
{
Thread *thisPtr = arg;
pthread_key_t key = GetKey();
int err;
/*
* NB: Must manually reset and then clear the pthread tls
* slot for the benefit of callbacks in NsCleanupThread.
*/
err = pthread_setspecific(key, thisPtr);
if (err != 0) {
NsThreadFatal("CleanupThread", "pthread_setspecific", err);
}
NsCleanupThread(thisPtr);
err = pthread_setspecific(key, NULL);
if (err != 0) {
NsThreadFatal("CleanupThread", "pthread_setspecific", err);
}
}
|