xref: /illumos-gate/usr/src/compat/bhyve/pthread_np.h (revision d0b3c59b)
1bf21cd93STycho Nightingale /*
2bf21cd93STycho Nightingale  * This file and its contents are supplied under the terms of the
3bf21cd93STycho Nightingale  * Common Development and Distribution License ("CDDL"), version 1.0.
4bf21cd93STycho Nightingale  * You may only use this file in accordance with the terms of version
5bf21cd93STycho Nightingale  * 1.0 of the CDDL.
6bf21cd93STycho Nightingale  *
7bf21cd93STycho Nightingale  * A full copy of the text of the CDDL should have accompanied this
8bf21cd93STycho Nightingale  * source.  A copy of the CDDL is also available via the Internet at
9bf21cd93STycho Nightingale  * http://www.illumos.org/license/CDDL.
10bf21cd93STycho Nightingale  */
11bf21cd93STycho Nightingale 
12bf21cd93STycho Nightingale /*
13bf21cd93STycho Nightingale  * Copyright 2014 Pluribus Networks Inc.
144c87aefeSPatrick Mooney  * Copyright 2018 Joyent, Inc.
15bf21cd93STycho Nightingale  */
16bf21cd93STycho Nightingale 
17bf21cd93STycho Nightingale #ifndef _COMPAT_FREEBSD_PTHREAD_NP_H_
18bf21cd93STycho Nightingale #define	_COMPAT_FREEBSD_PTHREAD_NP_H_
19bf21cd93STycho Nightingale 
20bf21cd93STycho Nightingale #include <sys/param.h>
21bf21cd93STycho Nightingale #include <sys/cpuset.h>
22bf21cd93STycho Nightingale 
23bf21cd93STycho Nightingale #include <synch.h>
244c87aefeSPatrick Mooney #include <pthread.h>
25bf21cd93STycho Nightingale 
264c87aefeSPatrick Mooney #define	pthread_set_name_np pthread_setname_np
27bf21cd93STycho Nightingale 
28bf21cd93STycho Nightingale #define	pthread_mutex_isowned_np(x)	_mutex_held(x)
29bf21cd93STycho Nightingale 
30bf21cd93STycho Nightingale #endif	/* _COMPAT_FREEBSD_PTHREAD_NP_H_ */
31