xref: /freebsd/lib/libc/include/namespace.h (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
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  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
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$
27  */
28 
29 #ifndef _NAMESPACE_H_
30 #define _NAMESPACE_H_
31 
32 /*
33  * Adjust names so that headers declare "hidden" names.
34  *
35  * README: When modifying this file don't forget to make the appropriate
36  *         changes in un-namespace.h!!!
37  */
38 
39 /*
40  * ISO C (C90) section.  Most names in libc aren't in ISO C, so they
41  * should be here.  Most aren't here...
42  */
43 #define		err				_err
44 #define		warn				_warn
45 
46 /*
47  * Prototypes for syscalls/functions that need to be overridden
48  * in libc_r/libpthread.
49  */
50 #define		accept				_accept
51 #define		__acl_aclcheck_fd		___acl_aclcheck_fd
52 #define		__acl_delete_fd			___acl_delete_fd
53 #define		__acl_get_fd			___acl_get_fd
54 #define		__acl_set_fd			___acl_set_fd
55 #define		bind				_bind
56 #define		__cap_get_fd			___cap_get_fd
57 #define		__cap_set_fd			___cap_set_fd
58 #define		close				_close
59 #define		connect				_connect
60 #define		dup				_dup
61 #define		dup2				_dup2
62 #define		execve				_execve
63 #define		fcntl				_fcntl
64 /*#define		flock				_flock */
65 #define		flockfile			_flockfile
66 #define		fstat				_fstat
67 #define		fstatfs				_fstatfs
68 #define		fsync				_fsync
69 #define		funlockfile			_funlockfile
70 #define		getdirentries			_getdirentries
71 #define		getlogin			_getlogin
72 #define		getpeername			_getpeername
73 #define		getprogname			_getprogname
74 #define		getsockname			_getsockname
75 #define		getsockopt			_getsockopt
76 #define		ioctl				_ioctl
77 /* #define		kevent				_kevent */
78 #define		listen				_listen
79 #define		nanosleep			_nanosleep
80 #define		open				_open
81 #define		poll				_poll
82 #define		pthread_cond_broadcast		_pthread_cond_broadcast
83 #define		pthread_cond_destroy		_pthread_cond_destroy
84 #define		pthread_cond_init		_pthread_cond_init
85 #define		pthread_cond_signal		_pthread_cond_signal
86 #define		pthread_cond_timedwait		_pthread_cond_timedwait
87 #define		pthread_cond_wait		_pthread_cond_wait
88 #define		pthread_exit			_pthread_exit
89 #define		pthread_getspecific		_pthread_getspecific
90 #define		pthread_key_create		_pthread_key_create
91 #define		pthread_key_delete		_pthread_key_delete
92 #define		pthread_main_np			_pthread_main_np
93 #define		pthread_mutex_destroy		_pthread_mutex_destroy
94 #define		pthread_mutex_init		_pthread_mutex_init
95 #define		pthread_mutex_lock		_pthread_mutex_lock
96 #define		pthread_mutex_trylock		_pthread_mutex_trylock
97 #define		pthread_mutex_unlock		_pthread_mutex_unlock
98 #define		pthread_mutexattr_destroy	_pthread_mutexattr_destroy
99 #define		pthread_mutexattr_init		_pthread_mutexattr_init
100 #define		pthread_mutexattr_settype	_pthread_mutexattr_settype
101 #define		pthread_once			_pthread_once
102 #define		pthread_rwlock_destroy		_pthread_rwlock_destroy
103 #define		pthread_rwlock_init		_pthread_rwlock_init
104 #define		pthread_rwlock_rdlock		_pthread_rwlock_rdlock
105 #define		pthread_rwlock_wrlock		_pthread_rwlock_wrlock
106 #define		pthread_rwlock_tryrdlock	_pthread_rwlock_tryrdlock
107 #define		pthread_rwlock_trywrlock	_pthread_rwlock_trywrlock
108 #define		pthread_rwlock_unlock		_pthread_rwlock_unlock
109 #define		pthread_self			_pthread_self
110 #define		pthread_setspecific		_pthread_setspecific
111 #define		pthread_sigmask			_pthread_sigmask
112 #define		read				_read
113 #define		readv				_readv
114 #define		recvfrom			_recvfrom
115 #define		recvmsg				_recvmsg
116 #define		select				_select
117 #define		sendmsg				_sendmsg
118 #define		sendto				_sendto
119 #define		setsockopt			_setsockopt
120 /*#define		sigaction			_sigaction*/
121 #define		sigprocmask			_sigprocmask
122 #define		sigsuspend			_sigsuspend
123 #define		socket				_socket
124 #define		socketpair			_socketpair
125 #define		wait4				_wait4
126 #define		waitpid				_waitpid
127 #define		write				_write
128 #define		writev				_writev
129 
130 
131 /*
132  * Other hidden syscalls/functions that libc_r needs to override
133  * but are not used internally by libc.
134  *
135  * XXX - When modifying libc to use one of the following, remove
136  * the prototype from below and place it in the list above.
137  */
138 #if 0
139 #define		creat				_creat
140 #define		fchflags			_fchflags
141 #define		fchmod				_fchmod
142 #define		fpathconf			_fpathconf
143 #define		ftrylockfile			_ftrylockfile
144 #define		msync				_msync
145 #define		nfssvc				_nfssvc
146 #define		pause				_pause
147 #define		pthread_rwlockattr_init		_pthread_rwlockattr_init
148 #define		pthread_rwlockattr_destroy	_pthread_rwlockattr_destroy
149 #define		sched_yield			_sched_yield
150 #define		sendfile			_sendfile
151 #define		shutdown			_shutdown
152 #define		sigaltstack			_sigaltstack
153 #define		sigpending			_sigpending
154 #define		sigreturn			_sigreturn
155 #define		sigsetmask			_sigsetmask
156 #define		sleep				_sleep
157 #define		system				_system
158 #define		tcdrain				_tcdrain
159 #define		wait				_wait
160 #endif
161 
162 #endif /* _NAMESPACE_H_ */
163