thr_exit.c (2ea1f90a187f5bba7e5e881f102860d76c81fa72) | thr_exit.c (e03efb02bca6c56144bb4b4059b8956fdb6343e4) |
---|---|
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 --- 15 unchanged lines hidden (view full) --- 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 | 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 --- 15 unchanged lines hidden (view full) --- 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 |
32#include "namespace.h" |
|
32#include <errno.h> 33#include <stdio.h> 34#include <stdlib.h> 35#include <pthread.h> | 33#include <errno.h> 34#include <stdio.h> 35#include <stdlib.h> 36#include <pthread.h> |
37#include "un-namespace.h" |
|
36 37#include "thr_private.h" 38 39void _pthread_exit(void *status); 40 41__weak_reference(_pthread_exit, pthread_exit); 42 43void --- 104 unchanged lines hidden --- | 38 39#include "thr_private.h" 40 41void _pthread_exit(void *status); 42 43__weak_reference(_pthread_exit, pthread_exit); 44 45void --- 104 unchanged lines hidden --- |