thr_private.h (c984b5a72a97d5e554e2a4eec7ecb39d59f28bd4) | thr_private.h (7d9d7ca2ed3e3d630e63482c41f2d26194129c2c) |
---|---|
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 --- 704 unchanged lines hidden (view full) --- 713pthread_t _pthread_self(void); 714int _pthread_setspecific(pthread_key_t, const void *); 715void _thread_exit(char *, int, char *); 716void _thread_exit_cleanup(void); 717void *_thread_cleanup(pthread_t); 718void _thread_cleanupspecific(void); 719void _thread_dump_info(void); 720void _thread_init(void); | 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 --- 704 unchanged lines hidden (view full) --- 713pthread_t _pthread_self(void); 714int _pthread_setspecific(pthread_key_t, const void *); 715void _thread_exit(char *, int, char *); 716void _thread_exit_cleanup(void); 717void *_thread_cleanup(pthread_t); 718void _thread_cleanupspecific(void); 719void _thread_dump_info(void); 720void _thread_init(void); |
721void _thread_sig_wrapper(int sig, siginfo_t *info, ucontext_t *context); | 721void _thread_sig_wrapper(int sig, siginfo_t *info, void *context); |
722void _thread_printf(int fd, const char *, ...); 723void _thread_start(void); 724void _thread_seterrno(pthread_t, int); 725pthread_addr_t _thread_gc(pthread_addr_t); 726void _thread_enter_cancellation_point(void); 727void _thread_leave_cancellation_point(void); 728void _thread_cancellation_point(void); 729int _thread_suspend(pthread_t thread, struct timespec *abstime); --- 111 unchanged lines hidden --- | 722void _thread_printf(int fd, const char *, ...); 723void _thread_start(void); 724void _thread_seterrno(pthread_t, int); 725pthread_addr_t _thread_gc(pthread_addr_t); 726void _thread_enter_cancellation_point(void); 727void _thread_leave_cancellation_point(void); 728void _thread_cancellation_point(void); 729int _thread_suspend(pthread_t thread, struct timespec *abstime); --- 111 unchanged lines hidden --- |