thr_condattr.c (a091d823ad89a36935ba6e5568c4720a35f9a99b) thr_condattr.c (37a6356bbed1e94fd2b0d9d02a29508465584c19)
1/*
2 * Copyright (c) 1997 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

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

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$
33 */
34
1/*
2 * Copyright (c) 1997 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

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

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$
33 */
34
35#include "namespace.h"
35#include <stdlib.h>
36#include <string.h>
37#include <errno.h>
38#include <pthread.h>
36#include <stdlib.h>
37#include <string.h>
38#include <errno.h>
39#include <pthread.h>
40#include "un-namespace.h"
39
40#include "thr_private.h"
41
42__weak_reference(_pthread_condattr_init, pthread_condattr_init);
43__weak_reference(_pthread_condattr_destroy, pthread_condattr_destroy);
44__weak_reference(_pthread_condattr_getclock, pthread_condattr_getclock);
45__weak_reference(_pthread_condattr_setclock, pthread_condattr_setclock);
46__weak_reference(_pthread_condattr_getpshared, pthread_condattr_getpshared);

--- 82 unchanged lines hidden ---
41
42#include "thr_private.h"
43
44__weak_reference(_pthread_condattr_init, pthread_condattr_init);
45__weak_reference(_pthread_condattr_destroy, pthread_condattr_destroy);
46__weak_reference(_pthread_condattr_getclock, pthread_condattr_getclock);
47__weak_reference(_pthread_condattr_setclock, pthread_condattr_setclock);
48__weak_reference(_pthread_condattr_getpshared, pthread_condattr_getpshared);

--- 82 unchanged lines hidden ---