Deleted Added
full compact
libc_private.h (281714) libc_private.h (287292)
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 281714 2015-04-18 21:50:13Z kib $
29 * $FreeBSD: head/lib/libc/include/libc_private.h 287292 2015-08-29 14:25:01Z 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>

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

354int __sys_thr_self(long *);
355int __sys_truncate(const char *, __off_t);
356__pid_t __sys_wait4(__pid_t, int *, int, struct rusage *);
357__pid_t __sys_wait6(enum idtype, __id_t, int *, int,
358 struct __wrusage *, struct __siginfo *);
359__ssize_t __sys_write(int, const void *, __size_t);
360__ssize_t __sys_writev(int, const struct iovec *, int);
361
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>

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

354int __sys_thr_self(long *);
355int __sys_truncate(const char *, __off_t);
356__pid_t __sys_wait4(__pid_t, int *, int, struct rusage *);
357__pid_t __sys_wait6(enum idtype, __id_t, int *, int,
358 struct __wrusage *, struct __siginfo *);
359__ssize_t __sys_write(int, const void *, __size_t);
360__ssize_t __sys_writev(int, const struct iovec *, int);
361
362int __libc_sigaction(int, const struct sigaction *,
363 struct sigaction *) __hidden;
364int __libc_sigprocmask(int, const __sigset_t *, __sigset_t *)
365 __hidden;
366int __libc_sigsuspend(const __sigset_t *) __hidden;
362int __libc_sigwait(const __sigset_t * __restrict,
363 int * restrict sig);
364int __libc_system(const char *);
365int __libc_tcdrain(int);
366int __fcntl_compat(int fd, int cmd, ...);
367
368int __sys_futimens(int fd, const struct timespec *times) __hidden;
369int __sys_utimensat(int fd, const char *path,

--- 14 unchanged lines hidden ---
367int __libc_sigwait(const __sigset_t * __restrict,
368 int * restrict sig);
369int __libc_system(const char *);
370int __libc_tcdrain(int);
371int __fcntl_compat(int fd, int cmd, ...);
372
373int __sys_futimens(int fd, const struct timespec *times) __hidden;
374int __sys_utimensat(int fd, const char *path,

--- 14 unchanged lines hidden ---