1996-08-20 08:22:01 +00:00
|
|
|
/*
|
1998-04-11 02:50:59 +00:00
|
|
|
* Copyright (c) 1996-98 John Birrell <jb@cimlogic.com.au>.
|
1996-08-20 08:22:01 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2007-10-29 00:31:54 +00:00
|
|
|
* 3. Neither the name of the author nor the names of any co-contributors
|
1996-08-20 08:22:01 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
* $FreeBSD$
|
1996-08-20 08:22:01 +00:00
|
|
|
*/
|
|
|
|
#ifndef _PTHREAD_NP_H_
|
|
|
|
#define _PTHREAD_NP_H_
|
|
|
|
|
2008-03-03 08:28:13 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/cpuset.h>
|
|
|
|
|
1999-03-23 05:11:30 +00:00
|
|
|
/*
|
|
|
|
* Non-POSIX type definitions:
|
|
|
|
*/
|
2002-03-23 17:24:55 +00:00
|
|
|
typedef void (*pthread_switch_routine_t)(pthread_t, pthread_t);
|
1999-03-23 05:11:30 +00:00
|
|
|
|
1996-08-20 08:22:01 +00:00
|
|
|
/*
|
|
|
|
* Non-POSIX thread function prototype definitions:
|
|
|
|
*/
|
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
int pthread_attr_setcreatesuspend_np(pthread_attr_t *);
|
2003-01-07 21:43:30 +00:00
|
|
|
int pthread_attr_get_np(pthread_t, pthread_attr_t *);
|
2008-03-03 08:28:13 +00:00
|
|
|
int pthread_attr_getaffinity_np(const pthread_attr_t *, size_t, cpuset_t *);
|
|
|
|
int pthread_attr_setaffinity_np(pthread_attr_t *, size_t, const cpuset_t *);
|
|
|
|
int pthread_getaffinity_np(pthread_t, size_t, cpuset_t *);
|
2002-05-24 04:35:55 +00:00
|
|
|
int pthread_main_np(void);
|
2002-03-23 17:24:55 +00:00
|
|
|
int pthread_multi_np(void);
|
2002-05-24 04:35:55 +00:00
|
|
|
int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
|
|
|
|
int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
|
2002-10-22 17:11:49 +00:00
|
|
|
void pthread_resume_all_np(void);
|
2002-03-23 17:24:55 +00:00
|
|
|
int pthread_resume_np(pthread_t);
|
2002-05-24 04:35:55 +00:00
|
|
|
void pthread_set_name_np(pthread_t, const char *);
|
2007-12-14 06:25:57 +00:00
|
|
|
int pthread_mutex_getspinloops_np(pthread_mutex_t *mutex, int *count);
|
|
|
|
int pthread_mutex_setspinloops_np(pthread_mutex_t *mutex, int count);
|
|
|
|
int pthread_mutex_getyieldloops_np(pthread_mutex_t *mutex, int *count);
|
|
|
|
int pthread_mutex_setyieldloops_np(pthread_mutex_t *mutex, int count);
|
2008-02-06 19:34:31 +00:00
|
|
|
int pthread_mutex_isowned_np(pthread_mutex_t *mutex);
|
2008-03-03 08:28:13 +00:00
|
|
|
int pthread_setaffinity_np(pthread_t, size_t, const cpuset_t *);
|
2002-03-23 17:24:55 +00:00
|
|
|
int pthread_single_np(void);
|
2002-10-22 17:11:49 +00:00
|
|
|
void pthread_suspend_all_np(void);
|
2002-03-23 17:24:55 +00:00
|
|
|
int pthread_suspend_np(pthread_t);
|
|
|
|
int pthread_switch_add_np(pthread_switch_routine_t);
|
|
|
|
int pthread_switch_delete_np(pthread_switch_routine_t);
|
2005-10-04 07:23:56 +00:00
|
|
|
int pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
|
1996-08-20 08:22:01 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|