Deleted Added
full compact
thr_spec.c (50476) thr_spec.c (55194)
1/*
2 * Copyright (c) 1995 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 * 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 *
1/*
2 * Copyright (c) 1995 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 * 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 * $FreeBSD: head/lib/libkse/thread/thr_spec.c 50476 1999-08-28 00:22:10Z peter $
32 * $FreeBSD: head/lib/libkse/thread/thr_spec.c 55194 1999-12-28 18:13:04Z deischen $
33 */
34#include <signal.h>
35#include <stdlib.h>
36#include <string.h>
37#include <errno.h>
38#ifdef _THREAD_SAFE
39#include <pthread.h>
40#include "pthread_private.h"

--- 42 unchanged lines hidden (view full) ---

83 } else
84 ret = EINVAL;
85 return (ret);
86}
87
88void
89_thread_cleanupspecific(void)
90{
33 */
34#include <signal.h>
35#include <stdlib.h>
36#include <string.h>
37#include <errno.h>
38#ifdef _THREAD_SAFE
39#include <pthread.h>
40#include "pthread_private.h"

--- 42 unchanged lines hidden (view full) ---

83 } else
84 ret = EINVAL;
85 return (ret);
86}
87
88void
89_thread_cleanupspecific(void)
90{
91 void *data;
91 void *data = NULL;
92 int key;
93 int itr;
94 void (*destructor)( void *);
95
96 for (itr = 0; itr < PTHREAD_DESTRUCTOR_ITERATIONS; itr++) {
97 for (key = 0; key < PTHREAD_KEYS_MAX; key++) {
98 if (_thread_run->specific_data_count) {
99 /* Lock the key table entry: */

--- 101 unchanged lines hidden ---
92 int key;
93 int itr;
94 void (*destructor)( void *);
95
96 for (itr = 0; itr < PTHREAD_DESTRUCTOR_ITERATIONS; itr++) {
97 for (key = 0; key < PTHREAD_KEYS_MAX; key++) {
98 if (_thread_run->specific_data_count) {
99 /* Lock the key table entry: */

--- 101 unchanged lines hidden ---