Deleted Added
full compact
libc_private.h (278751) libc_private.h (278889)
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 278751 2015-02-14 11:47:40Z kib $
29 * $FreeBSD: head/lib/libc/include/libc_private.h 278889 2015-02-17 08:54:03Z 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>

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

266void _malloc_prefork(void);
267void _malloc_postfork(void);
268
269void _malloc_first_thread(void);
270
271/*
272 * Function to clean up streams, called from abort() and exit().
273 */
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>

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

266void _malloc_prefork(void);
267void _malloc_postfork(void);
268
269void _malloc_first_thread(void);
270
271/*
272 * Function to clean up streams, called from abort() and exit().
273 */
274void (*__cleanup)(void) __hidden;
274extern void (*__cleanup)(void) __hidden;
275
276/*
277 * Get kern.osreldate to detect ABI revisions. Explicitly
278 * ignores value of $OSVERSION and caches result. Prototypes
279 * for the wrapped "new" pad-less syscalls are here for now.
280 */
281int __getosreldate(void);
282#include <sys/_types.h>

--- 98 unchanged lines hidden ---
275
276/*
277 * Get kern.osreldate to detect ABI revisions. Explicitly
278 * ignores value of $OSVERSION and caches result. Prototypes
279 * for the wrapped "new" pad-less syscalls are here for now.
280 */
281int __getosreldate(void);
282#include <sys/_types.h>

--- 98 unchanged lines hidden ---