Deleted Added
full compact
libc_private.h (278889) libc_private.h (280818)
1/*
2 * Copyright (c) 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

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
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 *
1/*
2 * Copyright (c) 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

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
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: head/lib/libc/include/libc_private.h 278889 2015-02-17 08:54:03Z kib $
29 * $FreeBSD: head/lib/libc/include/libc_private.h 280818 2015-03-29 19:14:41Z kib $
30 *
31 * Private definitions for libc, libc_r and libpthread.
32 *
33 */
34
35#ifndef _LIBC_PRIVATE_H_
36#define _LIBC_PRIVATE_H_
37#include <sys/_types.h>

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

216 INTERPOS_read,
217 INTERPOS_readv,
218 INTERPOS_wait4,
219 INTERPOS_write,
220 INTERPOS_writev,
221 INTERPOS__pthread_mutex_init_calloc_cb,
222 INTERPOS_spinlock,
223 INTERPOS_spinunlock,
30 *
31 * Private definitions for libc, libc_r and libpthread.
32 *
33 */
34
35#ifndef _LIBC_PRIVATE_H_
36#define _LIBC_PRIVATE_H_
37#include <sys/_types.h>

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

216 INTERPOS_read,
217 INTERPOS_readv,
218 INTERPOS_wait4,
219 INTERPOS_write,
220 INTERPOS_writev,
221 INTERPOS__pthread_mutex_init_calloc_cb,
222 INTERPOS_spinlock,
223 INTERPOS_spinunlock,
224 INTERPOS_kevent,
224 INTERPOS_MAX
225};
226
227/*
228 * yplib internal interfaces
229 */
230#ifdef YP
231int _yp_check(char **);

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

288int __sys_freebsd6_truncate(const char *, int, __off_t);
289__ssize_t __sys_freebsd6_pread(int, void *, __size_t, int, __off_t);
290__ssize_t __sys_freebsd6_pwrite(int, const void *, __size_t, int, __off_t);
291void * __sys_freebsd6_mmap(void *, __size_t, int, int, int, int, __off_t);
292
293struct aiocb;
294struct fd_set;
295struct iovec;
225 INTERPOS_MAX
226};
227
228/*
229 * yplib internal interfaces
230 */
231#ifdef YP
232int _yp_check(char **);

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

289int __sys_freebsd6_truncate(const char *, int, __off_t);
290__ssize_t __sys_freebsd6_pread(int, void *, __size_t, int, __off_t);
291__ssize_t __sys_freebsd6_pwrite(int, const void *, __size_t, int, __off_t);
292void * __sys_freebsd6_mmap(void *, __size_t, int, int, int, int, __off_t);
293
294struct aiocb;
295struct fd_set;
296struct iovec;
297struct kevent;
296struct msghdr;
297struct pollfd;
298struct rusage;
299struct sigaction;
300struct sockaddr;
301struct timespec;
302struct timeval;
303struct timezone;

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

310int __sys_clock_gettime(__clockid_t, struct timespec *ts);
311int __sys_close(int);
312int __sys_connect(int, const struct sockaddr *, __socklen_t);
313int __sys_fcntl(int, int, ...);
314int __sys_fsync(int);
315__pid_t __sys_fork(void);
316int __sys_ftruncate(int, __off_t);
317int __sys_gettimeofday(struct timeval *, struct timezone *);
298struct msghdr;
299struct pollfd;
300struct rusage;
301struct sigaction;
302struct sockaddr;
303struct timespec;
304struct timeval;
305struct timezone;

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

312int __sys_clock_gettime(__clockid_t, struct timespec *ts);
313int __sys_close(int);
314int __sys_connect(int, const struct sockaddr *, __socklen_t);
315int __sys_fcntl(int, int, ...);
316int __sys_fsync(int);
317__pid_t __sys_fork(void);
318int __sys_ftruncate(int, __off_t);
319int __sys_gettimeofday(struct timeval *, struct timezone *);
320int __sys_kevent(int, const struct kevent *, int, struct kevent *,
321 int, const struct timespec *);
318__off_t __sys_lseek(int, __off_t, int);
319void *__sys_mmap(void *, __size_t, int, int, int, __off_t);
320int __sys_msync(void *, __size_t, int);
321int __sys_nanosleep(const struct timespec *, struct timespec *);
322int __sys_open(const char *, int, ...);
323int __sys_openat(int, const char *, int, ...);
324int __sys_pselect(int, struct fd_set *, struct fd_set *,
325 struct fd_set *, const struct timespec *,

--- 55 unchanged lines hidden ---
322__off_t __sys_lseek(int, __off_t, int);
323void *__sys_mmap(void *, __size_t, int, int, int, __off_t);
324int __sys_msync(void *, __size_t, int);
325int __sys_nanosleep(const struct timespec *, struct timespec *);
326int __sys_open(const char *, int, ...);
327int __sys_openat(int, const char *, int, ...);
328int __sys_pselect(int, struct fd_set *, struct fd_set *,
329 struct fd_set *, const struct timespec *,

--- 55 unchanged lines hidden ---