1 /* 2 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by John Birrell. 16 * 4. Neither the name of the author nor the names of any co-contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 * 32 * Private thread definitions for the uthread kernel. 33 * 34 * $FreeBSD: src/lib/libpthread/thread/thr_private.h,v 1.120 2004/11/01 10:49:34 davidxu Exp $ 35 * $DragonFly: src/lib/libthread_xu/thread/thr_private.h,v 1.19 2008/07/15 01:18:53 dillon Exp $ 36 */ 37 38 #ifndef _THR_PRIVATE_H 39 #define _THR_PRIVATE_H 40 41 /* 42 * Include files. 43 */ 44 #include <sys/types.h> 45 #include <sys/time.h> 46 #include <sys/cdefs.h> 47 #include <sys/queue.h> 48 #include <sys/rtprio.h> 49 #include <machine/atomic.h> 50 #include <errno.h> 51 #include <limits.h> 52 #include <signal.h> 53 #include <stdio.h> 54 #include <sys/sched.h> 55 #include <unistd.h> 56 #include <pthread.h> 57 #include <pthread_np.h> 58 59 #include "pthread_md.h" 60 #include "thr_umtx.h" 61 #include "thread_db.h" 62 63 /* Signal to do cancellation */ 64 #define SIGCANCEL 32 65 66 /* 67 * Kernel fatal error handler macro. 68 */ 69 #define PANIC(string) _thread_exit(__FILE__,__LINE__,string) 70 71 /* Output debug messages like this: */ 72 #define stdout_debug(args...) _thread_printf(STDOUT_FILENO, ##args) 73 #define stderr_debug(args...) _thread_printf(STDERR_FILENO, ##args) 74 75 #ifdef _PTHREADS_INVARIANTS 76 #define THR_ASSERT(cond, msg) do { \ 77 if (__predict_false(!(cond))) \ 78 PANIC(msg); \ 79 } while (0) 80 #else 81 #define THR_ASSERT(cond, msg) 82 #endif 83 84 #ifdef PIC 85 #define STATIC_LIB_REQUIRE(name) 86 #else 87 #define STATIC_LIB_REQUIRE(name) __asm(".globl " #name) 88 #endif 89 90 TAILQ_HEAD(thread_head, pthread) thread_head; 91 TAILQ_HEAD(atfork_head, pthread_atfork) atfork_head; 92 93 #define TIMESPEC_ADD(dst, src, val) \ 94 do { \ 95 (dst)->tv_sec = (src)->tv_sec + (val)->tv_sec; \ 96 (dst)->tv_nsec = (src)->tv_nsec + (val)->tv_nsec; \ 97 if ((dst)->tv_nsec >= 1000000000) { \ 98 (dst)->tv_sec++; \ 99 (dst)->tv_nsec -= 1000000000; \ 100 } \ 101 } while (0) 102 103 #define TIMESPEC_SUB(dst, src, val) \ 104 do { \ 105 (dst)->tv_sec = (src)->tv_sec - (val)->tv_sec; \ 106 (dst)->tv_nsec = (src)->tv_nsec - (val)->tv_nsec; \ 107 if ((dst)->tv_nsec < 0) { \ 108 (dst)->tv_sec--; \ 109 (dst)->tv_nsec += 1000000000; \ 110 } \ 111 } while (0) 112 113 struct pthread_mutex { 114 /* 115 * Lock for accesses to this structure. 116 */ 117 volatile umtx_t m_lock; 118 enum pthread_mutextype m_type; 119 int m_protocol; 120 TAILQ_HEAD(mutex_head, pthread) m_queue; 121 struct pthread *m_owner; 122 long m_flags; 123 int m_count; 124 int m_refcount; 125 126 /* 127 * Used for priority inheritence and protection. 128 * 129 * m_prio - For priority inheritence, the highest active 130 * priority (threads locking the mutex inherit 131 * this priority). For priority protection, the 132 * ceiling priority of this mutex. 133 * m_saved_prio - mutex owners inherited priority before 134 * taking the mutex, restored when the owner 135 * unlocks the mutex. 136 */ 137 int m_prio; 138 int m_saved_prio; 139 140 /* 141 * Link for list of all mutexes a thread currently owns. 142 */ 143 TAILQ_ENTRY(pthread_mutex) m_qe; 144 }; 145 146 #define TAILQ_INITIALIZER { NULL, NULL } 147 148 #define PTHREAD_MUTEX_STATIC_INITIALIZER \ 149 {0, PTHREAD_MUTEX_DEFAULT, PTHREAD_PRIO_NONE, TAILQ_INITIALIZER, \ 150 NULL, { NULL }, MUTEX_FLAGS_PRIVATE, 0, 0, 0, TAILQ_INITIALIZER } 151 /* 152 * Flags for mutexes. 153 */ 154 #define MUTEX_FLAGS_PRIVATE 0x01 155 #define MUTEX_FLAGS_INITED 0x02 156 157 struct pthread_mutex_attr { 158 enum pthread_mutextype m_type; 159 int m_protocol; 160 int m_ceiling; 161 int m_flags; 162 }; 163 164 #define PTHREAD_MUTEXATTR_STATIC_INITIALIZER \ 165 { PTHREAD_MUTEX_DEFAULT, PTHREAD_PRIO_NONE, 0, MUTEX_FLAGS_PRIVATE } 166 167 struct pthread_cond { 168 /* 169 * Lock for accesses to this structure. 170 */ 171 volatile umtx_t c_lock; 172 volatile umtx_t c_seqno; 173 volatile int c_waiters; 174 volatile int c_broadcast; 175 int c_pshared; 176 int c_clockid; 177 }; 178 179 struct pthread_cond_attr { 180 int c_pshared; 181 int c_clockid; 182 }; 183 184 /* 185 * Flags for condition variables. 186 */ 187 #define COND_FLAGS_PRIVATE 0x01 188 #define COND_FLAGS_INITED 0x02 189 190 struct pthread_barrier { 191 volatile umtx_t b_lock; 192 volatile umtx_t b_cycle; 193 volatile int b_count; 194 volatile int b_waiters; 195 }; 196 197 struct pthread_barrierattr { 198 int pshared; 199 }; 200 201 struct pthread_spinlock { 202 volatile umtx_t s_lock; 203 }; 204 205 /* 206 * Cleanup definitions. 207 */ 208 struct pthread_cleanup { 209 struct pthread_cleanup *next; 210 void (*routine)(void *); 211 void *routine_arg; 212 int onstack; 213 }; 214 215 #define THR_CLEANUP_PUSH(td, func, arg) { \ 216 struct pthread_cleanup __cup; \ 217 \ 218 __cup.routine = func; \ 219 __cup.routine_arg = arg; \ 220 __cup.onstack = 1; \ 221 __cup.next = (td)->cleanup; \ 222 (td)->cleanup = &__cup; 223 224 #define THR_CLEANUP_POP(td, exec) \ 225 (td)->cleanup = __cup.next; \ 226 if ((exec) != 0) \ 227 __cup.routine(__cup.routine_arg); \ 228 } 229 230 struct pthread_atfork { 231 TAILQ_ENTRY(pthread_atfork) qe; 232 void (*prepare)(void); 233 void (*parent)(void); 234 void (*child)(void); 235 }; 236 237 struct pthread_attr { 238 int sched_policy; 239 int sched_inherit; 240 int prio; 241 int suspend; 242 #define THR_STACK_USER 0x100 /* 0xFF reserved for <pthread.h> */ 243 int flags; 244 void *stackaddr_attr; 245 size_t stacksize_attr; 246 size_t guardsize_attr; 247 }; 248 249 /* 250 * Thread creation state attributes. 251 */ 252 #define THR_CREATE_RUNNING 0 253 #define THR_CREATE_SUSPENDED 1 254 255 /* 256 * Miscellaneous definitions. 257 */ 258 #define THR_STACK_DEFAULT (sizeof(void *) / 4 * 1024 * 1024) 259 260 /* 261 * Maximum size of initial thread's stack. This perhaps deserves to be larger 262 * than the stacks of other threads, since many applications are likely to run 263 * almost entirely on this stack. 264 */ 265 #define THR_STACK_INITIAL (THR_STACK_DEFAULT * 2) 266 267 /* 268 * Define the different priority ranges. All applications have thread 269 * priorities constrained within 0-31. The threads library raises the 270 * priority when delivering signals in order to ensure that signal 271 * delivery happens (from the POSIX spec) "as soon as possible". 272 * In the future, the threads library will also be able to map specific 273 * threads into real-time (cooperating) processes or kernel threads. 274 * The RT and SIGNAL priorities will be used internally and added to 275 * thread base priorities so that the scheduling queue can handle both 276 * normal and RT priority threads with and without signal handling. 277 * 278 * The approach taken is that, within each class, signal delivery 279 * always has priority over thread execution. 280 */ 281 #define THR_DEFAULT_PRIORITY 0 282 #define THR_MUTEX_CEIL_PRIORITY 31 /* dummy */ 283 284 /* 285 * Time slice period in microseconds. 286 */ 287 #define TIMESLICE_USEC 20000 288 289 struct pthread_rwlockattr { 290 int pshared; 291 }; 292 293 struct pthread_rwlock { 294 pthread_mutex_t lock; /* monitor lock */ 295 pthread_cond_t read_signal; 296 pthread_cond_t write_signal; 297 int state; /* 0 = idle >0 = # of readers -1 = writer */ 298 int blocked_writers; 299 }; 300 301 /* 302 * Thread states. 303 */ 304 enum pthread_state { 305 PS_RUNNING, 306 PS_DEAD 307 }; 308 309 struct pthread_specific_elem { 310 const void *data; 311 int seqno; 312 }; 313 314 struct pthread_key { 315 volatile int allocated; 316 volatile int count; 317 int seqno; 318 void (*destructor)(void *); 319 }; 320 321 /* 322 * Thread structure. 323 */ 324 struct pthread { 325 /* 326 * Magic value to help recognize a valid thread structure 327 * from an invalid one: 328 */ 329 #define THR_MAGIC ((u_int32_t) 0xd09ba115) 330 u_int32_t magic; 331 char *name; 332 u_int64_t uniqueid; /* for gdb */ 333 334 /* 335 * Lock for accesses to this thread structure. 336 */ 337 umtx_t lock; 338 339 /* Thread is terminated in kernel, written by kernel. */ 340 long terminated; 341 342 /* Kernel thread id. */ 343 lwpid_t tid; 344 345 /* Internal condition variable cycle number. */ 346 umtx_t cycle; 347 348 /* How many low level locks the thread held. */ 349 int locklevel; 350 351 /* 352 * Set to non-zero when this thread has entered a critical 353 * region. We allow for recursive entries into critical regions. 354 */ 355 int critical_count; 356 357 /* Signal blocked counter. */ 358 int sigblock; 359 360 /* Queue entry for list of all threads. */ 361 TAILQ_ENTRY(pthread) tle; /* link for all threads in process */ 362 363 /* Queue entry for GC lists. */ 364 TAILQ_ENTRY(pthread) gcle; 365 366 /* Hash queue entry. */ 367 LIST_ENTRY(pthread) hle; 368 369 /* Threads reference count. */ 370 int refcount; 371 372 /* 373 * Thread start routine, argument, stack pointer and thread 374 * attributes. 375 */ 376 void *(*start_routine)(void *); 377 void *arg; 378 struct pthread_attr attr; 379 380 /* 381 * Cancelability flags 382 */ 383 #define THR_CANCEL_DISABLE 0x0001 384 #define THR_CANCEL_EXITING 0x0002 385 #define THR_CANCEL_AT_POINT 0x0004 386 #define THR_CANCEL_NEEDED 0x0008 387 #define SHOULD_CANCEL(val) \ 388 (((val) & (THR_CANCEL_DISABLE | THR_CANCEL_EXITING | \ 389 THR_CANCEL_NEEDED)) == THR_CANCEL_NEEDED) 390 391 #define SHOULD_ASYNC_CANCEL(val) \ 392 (((val) & (THR_CANCEL_DISABLE | THR_CANCEL_EXITING | \ 393 THR_CANCEL_NEEDED | THR_CANCEL_AT_POINT)) == \ 394 (THR_CANCEL_NEEDED | THR_CANCEL_AT_POINT)) 395 int cancelflags; 396 397 /* Thread temporary signal mask. */ 398 sigset_t sigmask; 399 400 /* Thread state: */ 401 umtx_t state; 402 403 /* 404 * Error variable used instead of errno, used for internal. 405 */ 406 int error; 407 408 /* 409 * The joiner is the thread that is joining to this thread. The 410 * join status keeps track of a join operation to another thread. 411 */ 412 struct pthread *joiner; 413 414 /* 415 * The current thread can belong to a priority mutex queue. 416 * This is the synchronization queue link. 417 */ 418 TAILQ_ENTRY(pthread) sqe; 419 420 /* Miscellaneous flags; only set with scheduling lock held. */ 421 int flags; 422 #define THR_FLAGS_PRIVATE 0x0001 423 #define THR_FLAGS_NEED_SUSPEND 0x0002 /* thread should be suspended */ 424 #define THR_FLAGS_SUSPENDED 0x0004 /* thread is suspended */ 425 426 /* Thread list flags; only set with thread list lock held. */ 427 int tlflags; 428 #define TLFLAGS_GC_SAFE 0x0001 /* thread safe for cleaning */ 429 #define TLFLAGS_IN_TDLIST 0x0002 /* thread in all thread list */ 430 #define TLFLAGS_IN_GCLIST 0x0004 /* thread in gc list */ 431 #define TLFLAGS_DETACHED 0x0008 /* thread is detached */ 432 433 /* 434 * Base priority is the user setable and retrievable priority 435 * of the thread. It is only affected by explicit calls to 436 * set thread priority and upon thread creation via a thread 437 * attribute or default priority. 438 */ 439 char base_priority; 440 441 /* 442 * Inherited priority is the priority a thread inherits by 443 * taking a priority inheritence or protection mutex. It 444 * is not affected by base priority changes. Inherited 445 * priority defaults to and remains 0 until a mutex is taken 446 * that is being waited on by any other thread whose priority 447 * is non-zero. 448 */ 449 char inherited_priority; 450 451 /* 452 * Active priority is always the maximum of the threads base 453 * priority and inherited priority. When there is a change 454 * in either the base or inherited priority, the active 455 * priority must be recalculated. 456 */ 457 char active_priority; 458 459 /* Number of priority ceiling or protection mutexes owned. */ 460 int priority_mutex_count; 461 462 /* Queue of currently owned simple type mutexes. */ 463 TAILQ_HEAD(, pthread_mutex) mutexq; 464 465 void *ret; 466 struct pthread_specific_elem *specific; 467 int specific_data_count; 468 469 /* Number rwlocks rdlocks held. */ 470 int rdlock_count; 471 472 /* 473 * Current locks bitmap for rtld. */ 474 int rtld_bits; 475 476 /* Thread control block */ 477 struct tls_tcb *tcb; 478 479 /* Cleanup handlers Link List */ 480 struct pthread_cleanup *cleanup; 481 482 /* Enable event reporting */ 483 int report_events; 484 485 /* Event mask */ 486 td_thr_events_t event_mask; 487 488 /* Event */ 489 td_event_msg_t event_buf; 490 }; 491 492 #define THR_IN_CRITICAL(thrd) \ 493 (((thrd)->locklevel > 0) || \ 494 ((thrd)->critical_count > 0)) 495 496 #define THR_UMTX_TRYLOCK(thrd, lck) \ 497 _thr_umtx_trylock((lck), (thrd)->tid) 498 499 #define THR_UMTX_LOCK(thrd, lck) \ 500 _thr_umtx_lock((lck), (thrd)->tid) 501 502 #define THR_UMTX_TIMEDLOCK(thrd, lck, timo) \ 503 _thr_umtx_timedlock((lck), (thrd)->tid, (timo)) 504 505 #define THR_UMTX_UNLOCK(thrd, lck) \ 506 _thr_umtx_unlock((lck), (thrd)->tid) 507 508 #define THR_LOCK_ACQUIRE(thrd, lck) \ 509 do { \ 510 (thrd)->locklevel++; \ 511 _thr_umtx_lock((lck), (thrd)->tid); \ 512 } while (0) 513 514 #ifdef _PTHREADS_INVARIANTS 515 #define THR_ASSERT_LOCKLEVEL(thrd) \ 516 do { \ 517 if (__predict_false((thrd)->locklevel <= 0)) \ 518 _thr_assert_lock_level(); \ 519 } while (0) 520 #else 521 #define THR_ASSERT_LOCKLEVEL(thrd) 522 #endif 523 524 #define THR_LOCK_RELEASE(thrd, lck) \ 525 do { \ 526 THR_ASSERT_LOCKLEVEL(thrd); \ 527 _thr_umtx_unlock((lck), (thrd)->tid); \ 528 (thrd)->locklevel--; \ 529 _thr_ast(thrd); \ 530 } while (0) 531 532 #define THR_LOCK(curthrd) THR_LOCK_ACQUIRE(curthrd, &(curthrd)->lock) 533 #define THR_UNLOCK(curthrd) THR_LOCK_RELEASE(curthrd, &(curthrd)->lock) 534 #define THR_THREAD_LOCK(curthrd, thr) THR_LOCK_ACQUIRE(curthrd, &(thr)->lock) 535 #define THR_THREAD_UNLOCK(curthrd, thr) THR_LOCK_RELEASE(curthrd, &(thr)->lock) 536 537 #define THREAD_LIST_LOCK(curthrd) \ 538 do { \ 539 THR_LOCK_ACQUIRE((curthrd), &_thr_list_lock); \ 540 } while (0) 541 542 #define THREAD_LIST_UNLOCK(curthrd) \ 543 do { \ 544 THR_LOCK_RELEASE((curthrd), &_thr_list_lock); \ 545 } while (0) 546 547 /* 548 * Macros to insert/remove threads to the all thread list and 549 * the gc list. 550 */ 551 #define THR_LIST_ADD(thrd) do { \ 552 if (((thrd)->tlflags & TLFLAGS_IN_TDLIST) == 0) { \ 553 TAILQ_INSERT_HEAD(&_thread_list, thrd, tle); \ 554 _thr_hash_add(thrd); \ 555 (thrd)->tlflags |= TLFLAGS_IN_TDLIST; \ 556 } \ 557 } while (0) 558 #define THR_LIST_REMOVE(thrd) do { \ 559 if (((thrd)->tlflags & TLFLAGS_IN_TDLIST) != 0) { \ 560 TAILQ_REMOVE(&_thread_list, thrd, tle); \ 561 _thr_hash_remove(thrd); \ 562 (thrd)->tlflags &= ~TLFLAGS_IN_TDLIST; \ 563 } \ 564 } while (0) 565 #define THR_GCLIST_ADD(thrd) do { \ 566 if (((thrd)->tlflags & TLFLAGS_IN_GCLIST) == 0) { \ 567 TAILQ_INSERT_HEAD(&_thread_gc_list, thrd, gcle);\ 568 (thrd)->tlflags |= TLFLAGS_IN_GCLIST; \ 569 _thr_gc_count++; \ 570 } \ 571 } while (0) 572 #define THR_GCLIST_REMOVE(thrd) do { \ 573 if (((thrd)->tlflags & TLFLAGS_IN_GCLIST) != 0) { \ 574 TAILQ_REMOVE(&_thread_gc_list, thrd, gcle); \ 575 (thrd)->tlflags &= ~TLFLAGS_IN_GCLIST; \ 576 _thr_gc_count--; \ 577 } \ 578 } while (0) 579 580 #define GC_NEEDED() (_thr_gc_count >= 5) 581 582 #define THR_IN_SYNCQ(thrd) (((thrd)->sflags & THR_FLAGS_IN_SYNCQ) != 0) 583 584 #define SHOULD_REPORT_EVENT(curthr, e) \ 585 (curthr->report_events && \ 586 (((curthr)->event_mask | _thread_event_mask ) & e) != 0) 587 588 extern int __isthreaded; 589 590 /* 591 * Global variables for the pthread library. 592 */ 593 extern char *_usrstack; 594 extern struct pthread *_thr_initial; 595 extern int _thread_scope_system; 596 597 /* For debugger */ 598 extern int _libthread_xu_debug; 599 extern int _thread_event_mask; 600 extern struct pthread *_thread_last_event; 601 602 /* List of all threads */ 603 extern struct thread_head _thread_list; 604 605 /* List of threads needing GC */ 606 extern struct thread_head _thread_gc_list; 607 608 extern int _thread_active_threads; 609 610 extern struct atfork_head _thr_atfork_list; 611 extern umtx_t _thr_atfork_lock; 612 613 /* Default thread attributes */ 614 extern struct pthread_attr _pthread_attr_default; 615 616 /* Default mutex attributes */ 617 extern struct pthread_mutex_attr _pthread_mutexattr_default; 618 619 /* Default condition variable attributes */ 620 extern struct pthread_cond_attr _pthread_condattr_default; 621 622 extern pid_t _thr_pid; 623 extern size_t _thr_guard_default; 624 extern size_t _thr_stack_default; 625 extern size_t _thr_stack_initial; 626 extern int _thr_page_size; 627 extern int _thr_gc_count; 628 629 extern umtx_t _mutex_static_lock; 630 extern umtx_t _cond_static_lock; 631 extern umtx_t _rwlock_static_lock; 632 extern umtx_t _keytable_lock; 633 extern umtx_t _thr_list_lock; 634 extern umtx_t _thr_event_lock; 635 636 /* 637 * Function prototype definitions. 638 */ 639 __BEGIN_DECLS 640 int _thr_setthreaded(int); 641 int _mutex_cv_lock(pthread_mutex_t *, int count); 642 int _mutex_cv_unlock(pthread_mutex_t *, int *count); 643 void _mutex_notify_priochange(struct pthread *, struct pthread *, int); 644 int _mutex_reinit(pthread_mutex_t *); 645 void _mutex_fork(struct pthread *curthread); 646 void _mutex_unlock_private(struct pthread *); 647 void _libpthread_init(struct pthread *); 648 struct pthread *_thr_alloc(struct pthread *); 649 void _thread_exit(const char *, int, const char *) __dead2; 650 void _thr_exit_cleanup(void); 651 int _thr_ref_add(struct pthread *, struct pthread *, int); 652 void _thr_ref_delete(struct pthread *, struct pthread *); 653 void _thr_ref_delete_unlocked(struct pthread *, struct pthread *); 654 int _thr_find_thread(struct pthread *, struct pthread *, int); 655 void _thr_rtld_init(void); 656 void _thr_rtld_fini(void); 657 int _thr_stack_alloc(struct pthread_attr *); 658 void _thr_stack_free(struct pthread_attr *); 659 void _thr_free(struct pthread *, struct pthread *); 660 void _thr_gc(struct pthread *); 661 void _thread_cleanupspecific(void); 662 void _thread_dump_info(void); 663 void _thread_printf(int, const char *, ...); 664 void _thr_spinlock_init(void); 665 int _thr_cancel_enter(struct pthread *); 666 void _thr_cancel_leave(struct pthread *, int); 667 void _thr_signal_block(struct pthread *); 668 void _thr_signal_unblock(struct pthread *); 669 void _thr_signal_init(void); 670 void _thr_signal_deinit(void); 671 int _thr_send_sig(struct pthread *, int sig); 672 void _thr_list_init(void); 673 void _thr_hash_add(struct pthread *); 674 void _thr_hash_remove(struct pthread *); 675 struct pthread *_thr_hash_find(struct pthread *); 676 void _thr_link(struct pthread *curthread, struct pthread *thread); 677 void _thr_unlink(struct pthread *curthread, struct pthread *thread); 678 void _thr_suspend_check(struct pthread *curthread); 679 void _thr_assert_lock_level(void) __dead2; 680 void _thr_ast(struct pthread *); 681 int _thr_get_tid(void); 682 void _thr_report_creation(struct pthread *curthread, 683 struct pthread *newthread); 684 void _thr_report_death(struct pthread *curthread); 685 void _thread_bp_create(void); 686 void _thread_bp_death(void); 687 int _thr_getscheduler(lwpid_t, int *, struct sched_param *); 688 int _thr_setscheduler(lwpid_t, int, const struct sched_param *); 689 int _thr_set_sched_other_prio(struct pthread *, int); 690 int _rtp_to_schedparam(const struct rtprio *rtp, int *policy, 691 struct sched_param *param); 692 int _schedparam_to_rtp(int policy, const struct sched_param *param, 693 struct rtprio *rtp); 694 int _umtx_sleep_err(volatile const int *, int, int); 695 int _umtx_wakeup_err(volatile const int *, int); 696 697 /* #include <sys/aio.h> */ 698 #ifdef _SYS_AIO_H_ 699 int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); 700 #endif 701 702 /* #include <fcntl.h> */ 703 #ifdef _SYS_FCNTL_H_ 704 int __sys_fcntl(int, int, ...); 705 int __sys_open(const char *, int, ...); 706 int __sys_openat(int, const char *, int, ...); 707 #endif 708 709 /* #include <sys/ioctl.h> */ 710 #ifdef _SYS_IOCTL_H_ 711 int __sys_ioctl(int, unsigned long, ...); 712 #endif 713 714 /* #inclde <sched.h> */ 715 #ifdef _SCHED_H_ 716 int __sys_sched_yield(void); 717 #endif 718 719 /* #include <signal.h> */ 720 #ifdef _SIGNAL_H_ 721 int __sys_kill(pid_t, int); 722 int __sys_sigaction(int, const struct sigaction *, struct sigaction *); 723 int __sys_sigpending(sigset_t *); 724 int __sys_sigprocmask(int, const sigset_t *, sigset_t *); 725 int __sys_sigsuspend(const sigset_t *); 726 int __sys_sigreturn(ucontext_t *); 727 int __sys_sigaltstack(const struct sigaltstack *, struct sigaltstack *); 728 #endif 729 730 /* #include <sys/socket.h> */ 731 #ifdef _SYS_SOCKET_H_ 732 int __sys_accept(int, struct sockaddr *, socklen_t *); 733 int __sys_connect(int, const struct sockaddr *, socklen_t); 734 ssize_t __sys_recv(int, void *, size_t, int); 735 ssize_t __sys_recvfrom(int, void *, size_t, int, struct sockaddr *, socklen_t *); 736 ssize_t __sys_recvmsg(int, struct msghdr *, int); 737 int __sys_sendfile(int, int, off_t, size_t, struct sf_hdtr *, 738 off_t *, int); 739 ssize_t __sys_sendmsg(int, const struct msghdr *, int); 740 ssize_t __sys_sendto(int, const void *,size_t, int, const struct sockaddr *, socklen_t); 741 #endif 742 743 /* #include <sys/uio.h> */ 744 #ifdef _SYS_UIO_H_ 745 ssize_t __sys_readv(int, const struct iovec *, int); 746 ssize_t __sys_writev(int, const struct iovec *, int); 747 #endif 748 749 /* #include <time.h> */ 750 #ifdef _TIME_H_ 751 int __sys_nanosleep(const struct timespec *, struct timespec *); 752 #endif 753 754 /* #include <unistd.h> */ 755 #ifdef _UNISTD_H_ 756 int __sys_close(int); 757 int __sys_execve(const char *, char * const *, char * const *); 758 int __sys_fork(void); 759 int __sys_fsync(int); 760 pid_t __sys_getpid(void); 761 int __sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *); 762 ssize_t __sys_read(int, void *, size_t); 763 ssize_t __sys_write(int, const void *, size_t); 764 void __sys_exit(int); 765 int __sys_sigwait(const sigset_t *, int *); 766 int __sys_sigtimedwait(const sigset_t *, siginfo_t *, 767 const struct timespec *); 768 int __sys_sigwaitinfo(const sigset_t *set, siginfo_t *info); 769 #endif 770 771 /* #include <poll.h> */ 772 #ifdef _SYS_POLL_H_ 773 int __sys_poll(struct pollfd *, unsigned, int); 774 #endif 775 776 /* #include <sys/mman.h> */ 777 #ifdef _SYS_MMAN_H_ 778 int __sys_msync(void *, size_t, int); 779 #endif 780 781 static inline int 782 _thr_isthreaded(void) 783 { 784 return (__isthreaded != 0); 785 } 786 787 static inline int 788 _thr_is_inited(void) 789 { 790 return (_thr_initial != 0); 791 } 792 793 static inline void 794 _thr_check_init(void) 795 { 796 if (_thr_initial == 0) 797 _libpthread_init(0); 798 } 799 800 __END_DECLS 801 802 #endif /* !_THR_PRIVATE_H */ 803