Deleted Added
full compact
namespace.h (71579) namespace.h (72373)
1/*
2 * Copyright (c) 2001 Daniel Eischen <deischen@FreeBSD.org>.
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 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 2001 Daniel Eischen <deischen@FreeBSD.org>.
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 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/lib/libc/include/namespace.h 71579 2001-01-24 13:01:12Z deischen $
26 * $FreeBSD: head/lib/libc/include/namespace.h 72373 2001-02-11 22:06:43Z deischen $
27 *
28 */
29
30#ifndef _NAMESPACE_H_
31#define _NAMESPACE_H_
32
33/*
34 * Prototypes for syscalls/functions that need to be overridden

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

65#define pthread_mutex_init _pthread_mutex_init
66#define pthread_mutex_lock _pthread_mutex_lock
67#define pthread_mutex_trylock _pthread_mutex_trylock
68#define pthread_mutex_unlock _pthread_mutex_unlock
69#define pthread_mutexattr_init _pthread_mutexattr_init
70#define pthread_mutexattr_destroy _pthread_mutexattr_destroy
71#define pthread_mutexattr_settype _pthread_mutexattr_settype
72#define pthread_once _pthread_once
27 *
28 */
29
30#ifndef _NAMESPACE_H_
31#define _NAMESPACE_H_
32
33/*
34 * Prototypes for syscalls/functions that need to be overridden

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

65#define pthread_mutex_init _pthread_mutex_init
66#define pthread_mutex_lock _pthread_mutex_lock
67#define pthread_mutex_trylock _pthread_mutex_trylock
68#define pthread_mutex_unlock _pthread_mutex_unlock
69#define pthread_mutexattr_init _pthread_mutexattr_init
70#define pthread_mutexattr_destroy _pthread_mutexattr_destroy
71#define pthread_mutexattr_settype _pthread_mutexattr_settype
72#define pthread_once _pthread_once
73#define pthread_self _pthread_self
73#define pthread_setspecific _pthread_setspecific
74#define read _read
75#define readv _readv
76#define recvfrom _recvfrom
77#define recvmsg _recvmsg
78#define select _select
79#define sendmsg _sendmsg
80#define sendto _sendto

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

110#define pthread_rwlock_init _pthread_rwlock_init
111#define pthread_rwlock_rdlock _pthread_rwlock_rdlock
112#define pthread_rwlock_tryrdlock _pthread_rwlock_tryrdlock
113#define pthread_rwlock_trywrlock _pthread_rwlock_trywrlock
114#define pthread_rwlock_unlock _pthread_rwlock_unlock
115#define pthread_rwlock_wrlock _pthread_rwlock_wrlock
116#define pthread_rwlockattr_init _pthread_rwlockattr_init
117#define pthread_rwlockattr_destroy _pthread_rwlockattr_destroy
74#define pthread_setspecific _pthread_setspecific
75#define read _read
76#define readv _readv
77#define recvfrom _recvfrom
78#define recvmsg _recvmsg
79#define select _select
80#define sendmsg _sendmsg
81#define sendto _sendto

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

111#define pthread_rwlock_init _pthread_rwlock_init
112#define pthread_rwlock_rdlock _pthread_rwlock_rdlock
113#define pthread_rwlock_tryrdlock _pthread_rwlock_tryrdlock
114#define pthread_rwlock_trywrlock _pthread_rwlock_trywrlock
115#define pthread_rwlock_unlock _pthread_rwlock_unlock
116#define pthread_rwlock_wrlock _pthread_rwlock_wrlock
117#define pthread_rwlockattr_init _pthread_rwlockattr_init
118#define pthread_rwlockattr_destroy _pthread_rwlockattr_destroy
118#define pthread_self _pthread_self
119#define sched_yield _sched_yield
120#define sendfile _sendfile
121#define shutdown _shutdown
122#define sigaltstack _sigaltstack
123#define signanosleep _signanosleep
124#define sigpending _sigpending
125#define sigreturn _sigreturn
126#define sigsetmask _sigsetmask
127#define sleep _sleep
128#define system _system
129#define tcdrain _tcdrain
130#define wait _wait
131#define waitpid _waitpid
132#endif
133
134#endif /* _NAMESPACE_H_ */
119#define sched_yield _sched_yield
120#define sendfile _sendfile
121#define shutdown _shutdown
122#define sigaltstack _sigaltstack
123#define signanosleep _signanosleep
124#define sigpending _sigpending
125#define sigreturn _sigreturn
126#define sigsetmask _sigsetmask
127#define sleep _sleep
128#define system _system
129#define tcdrain _tcdrain
130#define wait _wait
131#define waitpid _waitpid
132#endif
133
134#endif /* _NAMESPACE_H_ */