Deleted Added
full compact
thr_syscalls.c (277317) thr_syscalls.c (278875)
1/*
2 * Copyright (c) 2014 The FreeBSD Foundation.
3 * Copyright (C) 2005 David Xu <davidxu@freebsd.org>.
4 * Copyright (c) 2003 Daniel Eischen <deischen@freebsd.org>.
5 * Copyright (C) 2000 Jason Evans <jasone@freebsd.org>.
6 * All rights reserved.
7 *
8 * Portions of this software were developed by Konstantin Belousov

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

59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 */
65
66#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2014 The FreeBSD Foundation.
3 * Copyright (C) 2005 David Xu <davidxu@freebsd.org>.
4 * Copyright (c) 2003 Daniel Eischen <deischen@freebsd.org>.
5 * Copyright (C) 2000 Jason Evans <jasone@freebsd.org>.
6 * All rights reserved.
7 *
8 * Portions of this software were developed by Konstantin Belousov

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

59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 */
65
66#include <sys/cdefs.h>
67__FBSDID("$FreeBSD: stable/10/lib/libthr/thread/thr_syscalls.c 277317 2015-01-18 11:54:20Z kib $");
67__FBSDID("$FreeBSD: stable/10/lib/libthr/thread/thr_syscalls.c 278875 2015-02-17 01:03:06Z kib $");
68
69#include "namespace.h"
70#include <sys/types.h>
71#include <sys/mman.h>
72#include <sys/param.h>
73#include <sys/select.h>
74#include <sys/signalvar.h>
75#include <sys/socket.h>

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

592 SLOT(sigtimedwait);
593 SLOT(sigwaitinfo);
594 SLOT(swapcontext);
595 SLOT(system);
596 SLOT(tcdrain);
597 SLOT(wait4);
598 SLOT(write);
599 SLOT(writev);
68
69#include "namespace.h"
70#include <sys/types.h>
71#include <sys/mman.h>
72#include <sys/param.h>
73#include <sys/select.h>
74#include <sys/signalvar.h>
75#include <sys/socket.h>

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

592 SLOT(sigtimedwait);
593 SLOT(sigwaitinfo);
594 SLOT(swapcontext);
595 SLOT(system);
596 SLOT(tcdrain);
597 SLOT(wait4);
598 SLOT(write);
599 SLOT(writev);
600 SLOT(spinlock);
601 SLOT(spinunlock);
600#undef SLOT
601 *(__libc_interposing_slot(
602 INTERPOS__pthread_mutex_init_calloc_cb)) =
603 (interpos_func_t)_pthread_mutex_init_calloc_cb;
604}
602#undef SLOT
603 *(__libc_interposing_slot(
604 INTERPOS__pthread_mutex_init_calloc_cb)) =
605 (interpos_func_t)_pthread_mutex_init_calloc_cb;
606}