xref: /onnv-gate/usr/src/lib/libc/port/threads/scalls.c (revision 5002:0bbdb60e9732)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
51885Sraf  * Common Development and Distribution License (the "License").
61885Sraf  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
211111Sraf 
220Sstevel@tonic-gate /*
233512Sraf  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #include "lint.h"
300Sstevel@tonic-gate #include "thr_uberdata.h"
310Sstevel@tonic-gate #include <stdarg.h>
320Sstevel@tonic-gate #include <poll.h>
330Sstevel@tonic-gate #include <stropts.h>
340Sstevel@tonic-gate #include <dlfcn.h>
350Sstevel@tonic-gate #include <sys/uio.h>
360Sstevel@tonic-gate 
370Sstevel@tonic-gate /*
38*5002Sraf  * atfork_lock protects the pthread_atfork() data structures.
39*5002Sraf  *
404914Sraf  * fork_lock does double-duty.  Not only does it (and atfork_lock)
414914Sraf  * serialize calls to fork() and forkall(), but it also serializes calls
424914Sraf  * to thr_suspend() and thr_continue() (because fork() and forkall() also
434914Sraf  * suspend and continue other threads and they want no competition).
444914Sraf  *
45*5002Sraf  * Functions called in dlopen()ed L10N objects can do anything, including
46*5002Sraf  * call malloc() and free().  Such calls are not fork-safe when protected
47*5002Sraf  * by an ordinary mutex that is acquired in libc's prefork processing
48*5002Sraf  * because, with an interposed malloc library present, there would be a
49*5002Sraf  * lock ordering violation due to the pthread_atfork() prefork function
50*5002Sraf  * in the interposition library acquiring its malloc lock(s) before the
514914Sraf  * ordinary mutex in libc being acquired by libc's prefork functions.
524914Sraf  *
53*5002Sraf  * Within libc, calls to malloc() and free() are fork-safe if the calls
54*5002Sraf  * are made while holding no other libc locks.  This covers almost all
55*5002Sraf  * of libc's malloc() and free() calls.  For those libc code paths, such
56*5002Sraf  * as the above-mentioned L10N calls, that require serialization and that
57*5002Sraf  * may call malloc() or free(), libc uses callout_lock_enter() to perform
58*5002Sraf  * the serialization.  This works because callout_lock is not acquired as
59*5002Sraf  * part of running the pthread_atfork() prefork handlers (to avoid the
60*5002Sraf  * lock ordering violation described above).  Rather, it is simply
61*5002Sraf  * reinitialized in postfork1_child() to cover the case that some
62*5002Sraf  * now-defunct thread might have been suspended while holding it.
630Sstevel@tonic-gate  */
644914Sraf 
654843Sraf void
664843Sraf fork_lock_enter(void)
670Sstevel@tonic-gate {
684914Sraf 	ASSERT(curthread->ul_critical == 0);
694914Sraf 	(void) _private_mutex_lock(&curthread->ul_uberdata->fork_lock);
700Sstevel@tonic-gate }
710Sstevel@tonic-gate 
720Sstevel@tonic-gate void
730Sstevel@tonic-gate fork_lock_exit(void)
740Sstevel@tonic-gate {
754914Sraf 	ASSERT(curthread->ul_critical == 0);
764914Sraf 	(void) _private_mutex_unlock(&curthread->ul_uberdata->fork_lock);
774914Sraf }
780Sstevel@tonic-gate 
794914Sraf void
80*5002Sraf callout_lock_enter(void)
814914Sraf {
824914Sraf 	ASSERT(curthread->ul_critical == 0);
83*5002Sraf 	(void) _private_mutex_lock(&curthread->ul_uberdata->callout_lock);
844914Sraf }
854914Sraf 
864914Sraf void
87*5002Sraf callout_lock_exit(void)
884914Sraf {
894914Sraf 	ASSERT(curthread->ul_critical == 0);
90*5002Sraf 	(void) _private_mutex_unlock(&curthread->ul_uberdata->callout_lock);
910Sstevel@tonic-gate }
920Sstevel@tonic-gate 
933235Sraf #pragma weak forkx = _private_forkx
943235Sraf #pragma weak _forkx = _private_forkx
954292Sab196087 pid_t
963235Sraf _private_forkx(int flags)
970Sstevel@tonic-gate {
980Sstevel@tonic-gate 	ulwp_t *self = curthread;
990Sstevel@tonic-gate 	uberdata_t *udp = self->ul_uberdata;
1000Sstevel@tonic-gate 	pid_t pid;
1010Sstevel@tonic-gate 
1020Sstevel@tonic-gate 	if (self->ul_vfork) {
1030Sstevel@tonic-gate 		/*
1040Sstevel@tonic-gate 		 * We are a child of vfork(); omit all of the fork
1050Sstevel@tonic-gate 		 * logic and go straight to the system call trap.
1060Sstevel@tonic-gate 		 * A vfork() child of a multithreaded parent
1070Sstevel@tonic-gate 		 * must never call fork().
1080Sstevel@tonic-gate 		 */
1090Sstevel@tonic-gate 		if (udp->uberflags.uf_mt) {
1100Sstevel@tonic-gate 			errno = ENOTSUP;
1110Sstevel@tonic-gate 			return (-1);
1120Sstevel@tonic-gate 		}
1133235Sraf 		pid = __forkx(flags);
1140Sstevel@tonic-gate 		if (pid == 0) {		/* child */
1150Sstevel@tonic-gate 			udp->pid = _private_getpid();
1160Sstevel@tonic-gate 			self->ul_vfork = 0;
1170Sstevel@tonic-gate 		}
1180Sstevel@tonic-gate 		return (pid);
1190Sstevel@tonic-gate 	}
1200Sstevel@tonic-gate 
1214843Sraf 	sigoff(self);
1224843Sraf 	if (self->ul_fork) {
1230Sstevel@tonic-gate 		/*
1240Sstevel@tonic-gate 		 * Cannot call fork() from a fork handler.
1250Sstevel@tonic-gate 		 */
1264843Sraf 		sigon(self);
1274843Sraf 		errno = EDEADLK;
1280Sstevel@tonic-gate 		return (-1);
1290Sstevel@tonic-gate 	}
1300Sstevel@tonic-gate 	self->ul_fork = 1;
1310Sstevel@tonic-gate 
1320Sstevel@tonic-gate 	/*
1330Sstevel@tonic-gate 	 * The functions registered by pthread_atfork() are defined by
1340Sstevel@tonic-gate 	 * the application and its libraries and we must not hold any
1354843Sraf 	 * internal lmutex_lock()-acquired locks while invoking them.
1364843Sraf 	 * We hold only udp->atfork_lock to protect the atfork linkages.
1374843Sraf 	 * If one of these pthread_atfork() functions attempts to fork
1384914Sraf 	 * or to call pthread_atfork(), libc will detect the error and
1394914Sraf 	 * fail the call with EDEADLK.  Otherwise, the pthread_atfork()
1404914Sraf 	 * functions are free to do anything they please (except they
1414914Sraf 	 * will not receive any signals).
1420Sstevel@tonic-gate 	 */
1434914Sraf 	(void) _private_mutex_lock(&udp->atfork_lock);
1440Sstevel@tonic-gate 	_prefork_handler();
1450Sstevel@tonic-gate 
1460Sstevel@tonic-gate 	/*
1474843Sraf 	 * Block every other thread attempting thr_suspend() or thr_continue().
1484843Sraf 	 */
1494914Sraf 	(void) _private_mutex_lock(&udp->fork_lock);
1504843Sraf 
1514843Sraf 	/*
1520Sstevel@tonic-gate 	 * Block all signals.
1534843Sraf 	 * Just deferring them via sigoff() is not enough.
1540Sstevel@tonic-gate 	 * We have to avoid taking a deferred signal in the child
1553235Sraf 	 * that was actually sent to the parent before __forkx().
1560Sstevel@tonic-gate 	 */
1570Sstevel@tonic-gate 	block_all_signals(self);
1580Sstevel@tonic-gate 
1590Sstevel@tonic-gate 	/*
1600Sstevel@tonic-gate 	 * This suspends all threads but this one, leaving them
1610Sstevel@tonic-gate 	 * suspended outside of any critical regions in the library.
1624914Sraf 	 * Thus, we are assured that no lmutex_lock()-acquired library
1634914Sraf 	 * locks are held while we invoke fork() from the current thread.
1640Sstevel@tonic-gate 	 */
1650Sstevel@tonic-gate 	suspend_fork();
1660Sstevel@tonic-gate 
1673235Sraf 	pid = __forkx(flags);
1680Sstevel@tonic-gate 
1690Sstevel@tonic-gate 	if (pid == 0) {		/* child */
1700Sstevel@tonic-gate 		/*
1710Sstevel@tonic-gate 		 * Clear our schedctl pointer.
1720Sstevel@tonic-gate 		 * Discard any deferred signal that was sent to the parent.
1733235Sraf 		 * Because we blocked all signals before __forkx(), a
1740Sstevel@tonic-gate 		 * deferred signal cannot have been taken by the child.
1750Sstevel@tonic-gate 		 */
1760Sstevel@tonic-gate 		self->ul_schedctl_called = NULL;
1770Sstevel@tonic-gate 		self->ul_schedctl = NULL;
1780Sstevel@tonic-gate 		self->ul_cursig = 0;
1790Sstevel@tonic-gate 		self->ul_siginfo.si_signo = 0;
1800Sstevel@tonic-gate 		udp->pid = _private_getpid();
1810Sstevel@tonic-gate 		/* reset the library's data structures to reflect one thread */
1824574Sraf 		unregister_locks();
1832248Sraf 		postfork1_child();
1840Sstevel@tonic-gate 		restore_signals(self);
1854914Sraf 		(void) _private_mutex_unlock(&udp->fork_lock);
1860Sstevel@tonic-gate 		_postfork_child_handler();
1870Sstevel@tonic-gate 	} else {
1883235Sraf 		/* restart all threads that were suspended for fork() */
1890Sstevel@tonic-gate 		continue_fork(0);
1900Sstevel@tonic-gate 		restore_signals(self);
1914914Sraf 		(void) _private_mutex_unlock(&udp->fork_lock);
1920Sstevel@tonic-gate 		_postfork_parent_handler();
1930Sstevel@tonic-gate 	}
1940Sstevel@tonic-gate 
1954843Sraf 	(void) _private_mutex_unlock(&udp->atfork_lock);
1960Sstevel@tonic-gate 	self->ul_fork = 0;
1974843Sraf 	sigon(self);
1980Sstevel@tonic-gate 
1990Sstevel@tonic-gate 	return (pid);
2000Sstevel@tonic-gate }
2010Sstevel@tonic-gate 
2020Sstevel@tonic-gate /*
2033235Sraf  * fork() is fork1() for both Posix threads and Solaris threads.
2043235Sraf  * The forkall() interface exists for applications that require
2053235Sraf  * the semantics of replicating all threads.
2060Sstevel@tonic-gate  */
2073235Sraf #pragma weak fork1 = _fork
2083235Sraf #pragma weak _fork1 = _fork
2093235Sraf #pragma weak fork = _fork
2100Sstevel@tonic-gate pid_t
2113235Sraf _fork(void)
2123235Sraf {
2133235Sraf 	return (_private_forkx(0));
2143235Sraf }
2153235Sraf 
2163235Sraf /*
2173235Sraf  * Much of the logic here is the same as in forkx().
2183235Sraf  * See the comments in forkx(), above.
2193235Sraf  */
2203235Sraf #pragma weak forkallx = _private_forkallx
2213235Sraf #pragma weak _forkallx = _private_forkallx
2224292Sab196087 pid_t
2233235Sraf _private_forkallx(int flags)
2240Sstevel@tonic-gate {
2250Sstevel@tonic-gate 	ulwp_t *self = curthread;
2260Sstevel@tonic-gate 	uberdata_t *udp = self->ul_uberdata;
2270Sstevel@tonic-gate 	pid_t pid;
2280Sstevel@tonic-gate 
2290Sstevel@tonic-gate 	if (self->ul_vfork) {
2300Sstevel@tonic-gate 		if (udp->uberflags.uf_mt) {
2310Sstevel@tonic-gate 			errno = ENOTSUP;
2320Sstevel@tonic-gate 			return (-1);
2330Sstevel@tonic-gate 		}
2343235Sraf 		pid = __forkallx(flags);
2350Sstevel@tonic-gate 		if (pid == 0) {		/* child */
2360Sstevel@tonic-gate 			udp->pid = _private_getpid();
2370Sstevel@tonic-gate 			self->ul_vfork = 0;
2380Sstevel@tonic-gate 		}
2390Sstevel@tonic-gate 		return (pid);
2400Sstevel@tonic-gate 	}
2410Sstevel@tonic-gate 
2424843Sraf 	sigoff(self);
2434843Sraf 	if (self->ul_fork) {
2444843Sraf 		sigon(self);
2454843Sraf 		errno = EDEADLK;
2460Sstevel@tonic-gate 		return (-1);
2470Sstevel@tonic-gate 	}
2480Sstevel@tonic-gate 	self->ul_fork = 1;
2494914Sraf 	(void) _private_mutex_lock(&udp->atfork_lock);
2504914Sraf 	(void) _private_mutex_lock(&udp->fork_lock);
2510Sstevel@tonic-gate 	block_all_signals(self);
2520Sstevel@tonic-gate 	suspend_fork();
2530Sstevel@tonic-gate 
2543235Sraf 	pid = __forkallx(flags);
2550Sstevel@tonic-gate 
2560Sstevel@tonic-gate 	if (pid == 0) {
2570Sstevel@tonic-gate 		self->ul_schedctl_called = NULL;
2580Sstevel@tonic-gate 		self->ul_schedctl = NULL;
2590Sstevel@tonic-gate 		self->ul_cursig = 0;
2600Sstevel@tonic-gate 		self->ul_siginfo.si_signo = 0;
2610Sstevel@tonic-gate 		udp->pid = _private_getpid();
2624574Sraf 		unregister_locks();
2630Sstevel@tonic-gate 		continue_fork(1);
2640Sstevel@tonic-gate 	} else {
2650Sstevel@tonic-gate 		continue_fork(0);
2660Sstevel@tonic-gate 	}
2670Sstevel@tonic-gate 	restore_signals(self);
2684914Sraf 	(void) _private_mutex_unlock(&udp->fork_lock);
2694914Sraf 	(void) _private_mutex_unlock(&udp->atfork_lock);
2700Sstevel@tonic-gate 	self->ul_fork = 0;
2714843Sraf 	sigon(self);
2720Sstevel@tonic-gate 
2730Sstevel@tonic-gate 	return (pid);
2740Sstevel@tonic-gate }
2750Sstevel@tonic-gate 
2763235Sraf #pragma weak forkall = _forkall
2773235Sraf pid_t
2783235Sraf _forkall(void)
2793235Sraf {
2803235Sraf 	return (_private_forkallx(0));
2813235Sraf }
2823235Sraf 
2830Sstevel@tonic-gate /*
2840Sstevel@tonic-gate  * Hacks for system calls to provide cancellation
2850Sstevel@tonic-gate  * and improve java garbage collection.
2860Sstevel@tonic-gate  */
2870Sstevel@tonic-gate #define	PROLOGUE							\
2880Sstevel@tonic-gate {									\
2890Sstevel@tonic-gate 	ulwp_t *self = curthread;					\
2900Sstevel@tonic-gate 	int nocancel = (self->ul_vfork | self->ul_nocancel);		\
2910Sstevel@tonic-gate 	if (nocancel == 0) {						\
2920Sstevel@tonic-gate 		self->ul_save_async = self->ul_cancel_async;		\
2930Sstevel@tonic-gate 		if (!self->ul_cancel_disabled) {			\
2940Sstevel@tonic-gate 			self->ul_cancel_async = 1;			\
2950Sstevel@tonic-gate 			if (self->ul_cancel_pending)			\
2960Sstevel@tonic-gate 				_pthread_exit(PTHREAD_CANCELED);	\
2970Sstevel@tonic-gate 		}							\
2980Sstevel@tonic-gate 		self->ul_sp = stkptr();					\
2990Sstevel@tonic-gate 	}
3000Sstevel@tonic-gate 
3010Sstevel@tonic-gate #define	EPILOGUE							\
3020Sstevel@tonic-gate 	if (nocancel == 0) {						\
3030Sstevel@tonic-gate 		self->ul_sp = 0;					\
3040Sstevel@tonic-gate 		self->ul_cancel_async = self->ul_save_async;		\
3050Sstevel@tonic-gate 	}								\
3060Sstevel@tonic-gate }
3070Sstevel@tonic-gate 
3080Sstevel@tonic-gate /*
3090Sstevel@tonic-gate  * Perform the body of the action required by most of the cancelable
3100Sstevel@tonic-gate  * function calls.  The return(function_call) part is to allow the
3110Sstevel@tonic-gate  * compiler to make the call be executed with tail recursion, which
3120Sstevel@tonic-gate  * saves a register window on sparc and slightly (not much) improves
3130Sstevel@tonic-gate  * the code for x86/x64 compilations.
3140Sstevel@tonic-gate  */
3150Sstevel@tonic-gate #define	PERFORM(function_call)						\
3160Sstevel@tonic-gate 	PROLOGUE							\
3170Sstevel@tonic-gate 	if (nocancel)							\
3180Sstevel@tonic-gate 		return (function_call);					\
3190Sstevel@tonic-gate 	rv = function_call;						\
3200Sstevel@tonic-gate 	EPILOGUE							\
3210Sstevel@tonic-gate 	return (rv);
3220Sstevel@tonic-gate 
3230Sstevel@tonic-gate /*
3240Sstevel@tonic-gate  * Specialized prologue for sigsuspend() and pollsys().
3250Sstevel@tonic-gate  * These system calls pass a signal mask to the kernel.
3260Sstevel@tonic-gate  * The kernel replaces the thread's signal mask with the
3270Sstevel@tonic-gate  * temporary mask before the thread goes to sleep.  If
3280Sstevel@tonic-gate  * a signal is received, the signal handler will execute
3290Sstevel@tonic-gate  * with the temporary mask, as modified by the sigaction
3300Sstevel@tonic-gate  * for the particular signal.
3310Sstevel@tonic-gate  *
3320Sstevel@tonic-gate  * We block all signals until we reach the kernel with the
3330Sstevel@tonic-gate  * temporary mask.  This eliminates race conditions with
3340Sstevel@tonic-gate  * setting the signal mask while signals are being posted.
3350Sstevel@tonic-gate  */
3360Sstevel@tonic-gate #define	PROLOGUE_MASK(sigmask)						\
3370Sstevel@tonic-gate {									\
3380Sstevel@tonic-gate 	ulwp_t *self = curthread;					\
3390Sstevel@tonic-gate 	int nocancel = (self->ul_vfork | self->ul_nocancel);		\
3400Sstevel@tonic-gate 	if (!self->ul_vfork) {						\
3410Sstevel@tonic-gate 		if (sigmask) {						\
3420Sstevel@tonic-gate 			block_all_signals(self);			\
3431111Sraf 			self->ul_tmpmask.__sigbits[0] = sigmask->__sigbits[0]; \
3441111Sraf 			self->ul_tmpmask.__sigbits[1] = sigmask->__sigbits[1]; \
3450Sstevel@tonic-gate 			delete_reserved_signals(&self->ul_tmpmask);	\
3460Sstevel@tonic-gate 			self->ul_sigsuspend = 1;			\
3470Sstevel@tonic-gate 		}							\
3480Sstevel@tonic-gate 		if (nocancel == 0) {					\
3490Sstevel@tonic-gate 			self->ul_save_async = self->ul_cancel_async;	\
3500Sstevel@tonic-gate 			if (!self->ul_cancel_disabled) {		\
3510Sstevel@tonic-gate 				self->ul_cancel_async = 1;		\
3520Sstevel@tonic-gate 				if (self->ul_cancel_pending) {		\
3530Sstevel@tonic-gate 					if (self->ul_sigsuspend) {	\
3540Sstevel@tonic-gate 						self->ul_sigsuspend = 0;\
3550Sstevel@tonic-gate 						restore_signals(self);	\
3560Sstevel@tonic-gate 					}				\
3570Sstevel@tonic-gate 					_pthread_exit(PTHREAD_CANCELED);\
3580Sstevel@tonic-gate 				}					\
3590Sstevel@tonic-gate 			}						\
3600Sstevel@tonic-gate 			self->ul_sp = stkptr();				\
3610Sstevel@tonic-gate 		}							\
3620Sstevel@tonic-gate 	}
3630Sstevel@tonic-gate 
3640Sstevel@tonic-gate /*
3650Sstevel@tonic-gate  * If a signal is taken, we return from the system call wrapper with
3660Sstevel@tonic-gate  * our original signal mask restored (see code in call_user_handler()).
3670Sstevel@tonic-gate  * If not (self->ul_sigsuspend is still non-zero), we must restore our
3680Sstevel@tonic-gate  * original signal mask ourself.
3690Sstevel@tonic-gate  */
3700Sstevel@tonic-gate #define	EPILOGUE_MASK							\
3710Sstevel@tonic-gate 	if (nocancel == 0) {						\
3720Sstevel@tonic-gate 		self->ul_sp = 0;					\
3730Sstevel@tonic-gate 		self->ul_cancel_async = self->ul_save_async;		\
3740Sstevel@tonic-gate 	}								\
3750Sstevel@tonic-gate 	if (self->ul_sigsuspend) {					\
3760Sstevel@tonic-gate 		self->ul_sigsuspend = 0;				\
3770Sstevel@tonic-gate 		restore_signals(self);					\
3780Sstevel@tonic-gate 	}								\
3790Sstevel@tonic-gate }
3800Sstevel@tonic-gate 
3810Sstevel@tonic-gate /*
3822248Sraf  * Cancellation prologue and epilogue functions,
3832248Sraf  * for cancellation points too complex to include here.
3841885Sraf  */
3851885Sraf void
3861885Sraf _cancel_prologue(void)
3871885Sraf {
3881885Sraf 	ulwp_t *self = curthread;
3891885Sraf 
3901885Sraf 	self->ul_cancel_prologue = (self->ul_vfork | self->ul_nocancel);
3911885Sraf 	if (self->ul_cancel_prologue == 0) {
3921885Sraf 		self->ul_save_async = self->ul_cancel_async;
3931885Sraf 		if (!self->ul_cancel_disabled) {
3941885Sraf 			self->ul_cancel_async = 1;
3951885Sraf 			if (self->ul_cancel_pending)
3961885Sraf 				_pthread_exit(PTHREAD_CANCELED);
3971885Sraf 		}
3981885Sraf 		self->ul_sp = stkptr();
3991885Sraf 	}
4001885Sraf }
4011885Sraf 
4021885Sraf void
4031885Sraf _cancel_epilogue(void)
4041885Sraf {
4051885Sraf 	ulwp_t *self = curthread;
4061885Sraf 
4071885Sraf 	if (self->ul_cancel_prologue == 0) {
4081885Sraf 		self->ul_sp = 0;
4091885Sraf 		self->ul_cancel_async = self->ul_save_async;
4101885Sraf 	}
4111885Sraf }
4121885Sraf 
4131885Sraf /*
4140Sstevel@tonic-gate  * Called from _thrp_join() (thr_join() is a cancellation point)
4150Sstevel@tonic-gate  */
4160Sstevel@tonic-gate int
4170Sstevel@tonic-gate lwp_wait(thread_t tid, thread_t *found)
4180Sstevel@tonic-gate {
4190Sstevel@tonic-gate 	int error;
4200Sstevel@tonic-gate 
4210Sstevel@tonic-gate 	PROLOGUE
4220Sstevel@tonic-gate 	while ((error = __lwp_wait(tid, found)) == EINTR)
4230Sstevel@tonic-gate 		;
4240Sstevel@tonic-gate 	EPILOGUE
4250Sstevel@tonic-gate 	return (error);
4260Sstevel@tonic-gate }
4270Sstevel@tonic-gate 
4280Sstevel@tonic-gate ssize_t
4290Sstevel@tonic-gate read(int fd, void *buf, size_t size)
4300Sstevel@tonic-gate {
4310Sstevel@tonic-gate 	extern ssize_t _read(int, void *, size_t);
4320Sstevel@tonic-gate 	ssize_t rv;
4330Sstevel@tonic-gate 
4340Sstevel@tonic-gate 	PERFORM(_read(fd, buf, size))
4350Sstevel@tonic-gate }
4360Sstevel@tonic-gate 
4370Sstevel@tonic-gate ssize_t
4380Sstevel@tonic-gate write(int fd, const void *buf, size_t size)
4390Sstevel@tonic-gate {
4400Sstevel@tonic-gate 	extern ssize_t _write(int, const void *, size_t);
4410Sstevel@tonic-gate 	ssize_t rv;
4420Sstevel@tonic-gate 
4430Sstevel@tonic-gate 	PERFORM(_write(fd, buf, size))
4440Sstevel@tonic-gate }
4450Sstevel@tonic-gate 
4460Sstevel@tonic-gate int
4470Sstevel@tonic-gate getmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
4480Sstevel@tonic-gate 	int *flagsp)
4490Sstevel@tonic-gate {
4500Sstevel@tonic-gate 	extern int _getmsg(int, struct strbuf *, struct strbuf *, int *);
4510Sstevel@tonic-gate 	int rv;
4520Sstevel@tonic-gate 
4530Sstevel@tonic-gate 	PERFORM(_getmsg(fd, ctlptr, dataptr, flagsp))
4540Sstevel@tonic-gate }
4550Sstevel@tonic-gate 
4560Sstevel@tonic-gate int
4570Sstevel@tonic-gate getpmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
4580Sstevel@tonic-gate 	int *bandp, int *flagsp)
4590Sstevel@tonic-gate {
4600Sstevel@tonic-gate 	extern int _getpmsg(int, struct strbuf *, struct strbuf *,
4614843Sraf 	    int *, int *);
4620Sstevel@tonic-gate 	int rv;
4630Sstevel@tonic-gate 
4640Sstevel@tonic-gate 	PERFORM(_getpmsg(fd, ctlptr, dataptr, bandp, flagsp))
4650Sstevel@tonic-gate }
4660Sstevel@tonic-gate 
4670Sstevel@tonic-gate int
4680Sstevel@tonic-gate putmsg(int fd, const struct strbuf *ctlptr,
4690Sstevel@tonic-gate 	const struct strbuf *dataptr, int flags)
4700Sstevel@tonic-gate {
4710Sstevel@tonic-gate 	extern int _putmsg(int, const struct strbuf *,
4724843Sraf 	    const struct strbuf *, int);
4730Sstevel@tonic-gate 	int rv;
4740Sstevel@tonic-gate 
4750Sstevel@tonic-gate 	PERFORM(_putmsg(fd, ctlptr, dataptr, flags))
4760Sstevel@tonic-gate }
4770Sstevel@tonic-gate 
4780Sstevel@tonic-gate int
4790Sstevel@tonic-gate __xpg4_putmsg(int fd, const struct strbuf *ctlptr,
4800Sstevel@tonic-gate 	const struct strbuf *dataptr, int flags)
4810Sstevel@tonic-gate {
4820Sstevel@tonic-gate 	extern int _putmsg(int, const struct strbuf *,
4834843Sraf 	    const struct strbuf *, int);
4840Sstevel@tonic-gate 	int rv;
4850Sstevel@tonic-gate 
4860Sstevel@tonic-gate 	PERFORM(_putmsg(fd, ctlptr, dataptr, flags|MSG_XPG4))
4870Sstevel@tonic-gate }
4880Sstevel@tonic-gate 
4890Sstevel@tonic-gate int
4900Sstevel@tonic-gate putpmsg(int fd, const struct strbuf *ctlptr,
4910Sstevel@tonic-gate 	const struct strbuf *dataptr, int band, int flags)
4920Sstevel@tonic-gate {
4930Sstevel@tonic-gate 	extern int _putpmsg(int, const struct strbuf *,
4944843Sraf 	    const struct strbuf *, int, int);
4950Sstevel@tonic-gate 	int rv;
4960Sstevel@tonic-gate 
4970Sstevel@tonic-gate 	PERFORM(_putpmsg(fd, ctlptr, dataptr, band, flags))
4980Sstevel@tonic-gate }
4990Sstevel@tonic-gate 
5000Sstevel@tonic-gate int
5010Sstevel@tonic-gate __xpg4_putpmsg(int fd, const struct strbuf *ctlptr,
5020Sstevel@tonic-gate 	const struct strbuf *dataptr, int band, int flags)
5030Sstevel@tonic-gate {
5040Sstevel@tonic-gate 	extern int _putpmsg(int, const struct strbuf *,
5054843Sraf 	    const struct strbuf *, int, int);
5060Sstevel@tonic-gate 	int rv;
5070Sstevel@tonic-gate 
5080Sstevel@tonic-gate 	PERFORM(_putpmsg(fd, ctlptr, dataptr, band, flags|MSG_XPG4))
5090Sstevel@tonic-gate }
5100Sstevel@tonic-gate 
5112248Sraf #pragma weak nanosleep = _nanosleep
5120Sstevel@tonic-gate int
5132248Sraf _nanosleep(const timespec_t *rqtp, timespec_t *rmtp)
5140Sstevel@tonic-gate {
5150Sstevel@tonic-gate 	int error;
5160Sstevel@tonic-gate 
5170Sstevel@tonic-gate 	PROLOGUE
5182248Sraf 	error = __nanosleep(rqtp, rmtp);
5190Sstevel@tonic-gate 	EPILOGUE
5200Sstevel@tonic-gate 	if (error) {
5210Sstevel@tonic-gate 		errno = error;
5220Sstevel@tonic-gate 		return (-1);
5230Sstevel@tonic-gate 	}
5240Sstevel@tonic-gate 	return (0);
5250Sstevel@tonic-gate }
5260Sstevel@tonic-gate 
5272248Sraf #pragma weak clock_nanosleep = _clock_nanosleep
5280Sstevel@tonic-gate int
5292248Sraf _clock_nanosleep(clockid_t clock_id, int flags,
5300Sstevel@tonic-gate 	const timespec_t *rqtp, timespec_t *rmtp)
5310Sstevel@tonic-gate {
5320Sstevel@tonic-gate 	timespec_t reltime;
5330Sstevel@tonic-gate 	hrtime_t start;
5340Sstevel@tonic-gate 	hrtime_t rqlapse;
5350Sstevel@tonic-gate 	hrtime_t lapse;
5360Sstevel@tonic-gate 	int error;
5370Sstevel@tonic-gate 
5380Sstevel@tonic-gate 	switch (clock_id) {
5390Sstevel@tonic-gate 	case CLOCK_VIRTUAL:
5400Sstevel@tonic-gate 	case CLOCK_PROCESS_CPUTIME_ID:
5410Sstevel@tonic-gate 	case CLOCK_THREAD_CPUTIME_ID:
5420Sstevel@tonic-gate 		return (ENOTSUP);
5430Sstevel@tonic-gate 	case CLOCK_REALTIME:
5440Sstevel@tonic-gate 	case CLOCK_HIGHRES:
5450Sstevel@tonic-gate 		break;
5460Sstevel@tonic-gate 	default:
5470Sstevel@tonic-gate 		return (EINVAL);
5480Sstevel@tonic-gate 	}
5490Sstevel@tonic-gate 	if (flags & TIMER_ABSTIME) {
5500Sstevel@tonic-gate 		abstime_to_reltime(clock_id, rqtp, &reltime);
5510Sstevel@tonic-gate 		rmtp = NULL;
5520Sstevel@tonic-gate 	} else {
5530Sstevel@tonic-gate 		reltime = *rqtp;
5540Sstevel@tonic-gate 		if (clock_id == CLOCK_HIGHRES)
5550Sstevel@tonic-gate 			start = gethrtime();
5560Sstevel@tonic-gate 	}
5570Sstevel@tonic-gate restart:
5580Sstevel@tonic-gate 	PROLOGUE
5592248Sraf 	error = __nanosleep(&reltime, rmtp);
5600Sstevel@tonic-gate 	EPILOGUE
5610Sstevel@tonic-gate 	if (error == 0 && clock_id == CLOCK_HIGHRES) {
5620Sstevel@tonic-gate 		/*
5630Sstevel@tonic-gate 		 * Don't return yet if we didn't really get a timeout.
5640Sstevel@tonic-gate 		 * This can happen if we return because someone resets
5650Sstevel@tonic-gate 		 * the system clock.
5660Sstevel@tonic-gate 		 */
5670Sstevel@tonic-gate 		if (flags & TIMER_ABSTIME) {
5680Sstevel@tonic-gate 			if ((hrtime_t)(uint32_t)rqtp->tv_sec * NANOSEC +
5690Sstevel@tonic-gate 			    rqtp->tv_nsec > gethrtime()) {
5700Sstevel@tonic-gate 				abstime_to_reltime(clock_id, rqtp, &reltime);
5710Sstevel@tonic-gate 				goto restart;
5720Sstevel@tonic-gate 			}
5730Sstevel@tonic-gate 		} else {
5740Sstevel@tonic-gate 			rqlapse = (hrtime_t)(uint32_t)rqtp->tv_sec * NANOSEC +
5754843Sraf 			    rqtp->tv_nsec;
5760Sstevel@tonic-gate 			lapse = gethrtime() - start;
5770Sstevel@tonic-gate 			if (rqlapse > lapse) {
5780Sstevel@tonic-gate 				hrt2ts(rqlapse - lapse, &reltime);
5790Sstevel@tonic-gate 				goto restart;
5800Sstevel@tonic-gate 			}
5810Sstevel@tonic-gate 		}
5820Sstevel@tonic-gate 	}
5830Sstevel@tonic-gate 	if (error == 0 && clock_id == CLOCK_REALTIME &&
5840Sstevel@tonic-gate 	    (flags & TIMER_ABSTIME)) {
5850Sstevel@tonic-gate 		/*
5860Sstevel@tonic-gate 		 * Don't return yet just because someone reset the
5870Sstevel@tonic-gate 		 * system clock.  Recompute the new relative time
5880Sstevel@tonic-gate 		 * and reissue the nanosleep() call if necessary.
5890Sstevel@tonic-gate 		 *
5900Sstevel@tonic-gate 		 * Resetting the system clock causes all sorts of
5910Sstevel@tonic-gate 		 * problems and the SUSV3 standards body should
5920Sstevel@tonic-gate 		 * have made the behavior of clock_nanosleep() be
5930Sstevel@tonic-gate 		 * implementation-defined in such a case rather than
5940Sstevel@tonic-gate 		 * being specific about honoring the new system time.
5950Sstevel@tonic-gate 		 * Standards bodies are filled with fools and idiots.
5960Sstevel@tonic-gate 		 */
5970Sstevel@tonic-gate 		abstime_to_reltime(clock_id, rqtp, &reltime);
5980Sstevel@tonic-gate 		if (reltime.tv_sec != 0 || reltime.tv_nsec != 0)
5990Sstevel@tonic-gate 			goto restart;
6000Sstevel@tonic-gate 	}
6010Sstevel@tonic-gate 	return (error);
6020Sstevel@tonic-gate }
6030Sstevel@tonic-gate 
6040Sstevel@tonic-gate #pragma weak sleep = _sleep
6050Sstevel@tonic-gate unsigned int
6060Sstevel@tonic-gate _sleep(unsigned int sec)
6070Sstevel@tonic-gate {
6080Sstevel@tonic-gate 	unsigned int rem = 0;
6090Sstevel@tonic-gate 	int error;
6100Sstevel@tonic-gate 	timespec_t ts;
6110Sstevel@tonic-gate 	timespec_t tsr;
6120Sstevel@tonic-gate 
6130Sstevel@tonic-gate 	ts.tv_sec = (time_t)sec;
6140Sstevel@tonic-gate 	ts.tv_nsec = 0;
6150Sstevel@tonic-gate 	PROLOGUE
6162248Sraf 	error = __nanosleep(&ts, &tsr);
6170Sstevel@tonic-gate 	EPILOGUE
6180Sstevel@tonic-gate 	if (error == EINTR) {
6190Sstevel@tonic-gate 		rem = (unsigned int)tsr.tv_sec;
6200Sstevel@tonic-gate 		if (tsr.tv_nsec >= NANOSEC / 2)
6210Sstevel@tonic-gate 			rem++;
6220Sstevel@tonic-gate 	}
6230Sstevel@tonic-gate 	return (rem);
6240Sstevel@tonic-gate }
6250Sstevel@tonic-gate 
6260Sstevel@tonic-gate #pragma weak usleep = _usleep
6270Sstevel@tonic-gate int
6280Sstevel@tonic-gate _usleep(useconds_t usec)
6290Sstevel@tonic-gate {
6300Sstevel@tonic-gate 	timespec_t ts;
6310Sstevel@tonic-gate 
6320Sstevel@tonic-gate 	ts.tv_sec = usec / MICROSEC;
6330Sstevel@tonic-gate 	ts.tv_nsec = (long)(usec % MICROSEC) * 1000;
6340Sstevel@tonic-gate 	PROLOGUE
6352248Sraf 	(void) __nanosleep(&ts, NULL);
6360Sstevel@tonic-gate 	EPILOGUE
6370Sstevel@tonic-gate 	return (0);
6380Sstevel@tonic-gate }
6390Sstevel@tonic-gate 
6400Sstevel@tonic-gate int
6410Sstevel@tonic-gate close(int fildes)
6420Sstevel@tonic-gate {
6432248Sraf 	extern void _aio_close(int);
6440Sstevel@tonic-gate 	extern int _close(int);
6450Sstevel@tonic-gate 	int rv;
6460Sstevel@tonic-gate 
6472248Sraf 	_aio_close(fildes);
6480Sstevel@tonic-gate 	PERFORM(_close(fildes))
6490Sstevel@tonic-gate }
6500Sstevel@tonic-gate 
6510Sstevel@tonic-gate int
6520Sstevel@tonic-gate creat(const char *path, mode_t mode)
6530Sstevel@tonic-gate {
6540Sstevel@tonic-gate 	extern int _creat(const char *, mode_t);
6550Sstevel@tonic-gate 	int rv;
6560Sstevel@tonic-gate 
6570Sstevel@tonic-gate 	PERFORM(_creat(path, mode))
6580Sstevel@tonic-gate }
6590Sstevel@tonic-gate 
6600Sstevel@tonic-gate #if !defined(_LP64)
6610Sstevel@tonic-gate int
6620Sstevel@tonic-gate creat64(const char *path, mode_t mode)
6630Sstevel@tonic-gate {
6640Sstevel@tonic-gate 	extern int _creat64(const char *, mode_t);
6650Sstevel@tonic-gate 	int rv;
6660Sstevel@tonic-gate 
6670Sstevel@tonic-gate 	PERFORM(_creat64(path, mode))
6680Sstevel@tonic-gate }
6690Sstevel@tonic-gate #endif	/* !_LP64 */
6700Sstevel@tonic-gate 
6710Sstevel@tonic-gate int
6720Sstevel@tonic-gate fcntl(int fildes, int cmd, ...)
6730Sstevel@tonic-gate {
6740Sstevel@tonic-gate 	extern int _fcntl(int, int, ...);
6750Sstevel@tonic-gate 	intptr_t arg;
6760Sstevel@tonic-gate 	int rv;
6770Sstevel@tonic-gate 	va_list ap;
6780Sstevel@tonic-gate 
6790Sstevel@tonic-gate 	va_start(ap, cmd);
6800Sstevel@tonic-gate 	arg = va_arg(ap, intptr_t);
6810Sstevel@tonic-gate 	va_end(ap);
6820Sstevel@tonic-gate 	if (cmd != F_SETLKW)
6830Sstevel@tonic-gate 		return (_fcntl(fildes, cmd, arg));
6840Sstevel@tonic-gate 	PERFORM(_fcntl(fildes, cmd, arg))
6850Sstevel@tonic-gate }
6860Sstevel@tonic-gate 
6870Sstevel@tonic-gate int
6884722Sraf fdatasync(int fildes)
6894722Sraf {
6904722Sraf 	extern int _fdatasync(int);
6914722Sraf 	int rv;
6924722Sraf 
6934722Sraf 	PERFORM(_fdatasync(fildes))
6944722Sraf }
6954722Sraf 
6964722Sraf int
6970Sstevel@tonic-gate fsync(int fildes)
6980Sstevel@tonic-gate {
6990Sstevel@tonic-gate 	extern int _fsync(int);
7000Sstevel@tonic-gate 	int rv;
7010Sstevel@tonic-gate 
7020Sstevel@tonic-gate 	PERFORM(_fsync(fildes))
7030Sstevel@tonic-gate }
7040Sstevel@tonic-gate 
7050Sstevel@tonic-gate int
7060Sstevel@tonic-gate lockf(int fildes, int function, off_t size)
7070Sstevel@tonic-gate {
7080Sstevel@tonic-gate 	extern int _lockf(int, int, off_t);
7090Sstevel@tonic-gate 	int rv;
7100Sstevel@tonic-gate 
7110Sstevel@tonic-gate 	PERFORM(_lockf(fildes, function, size))
7120Sstevel@tonic-gate }
7130Sstevel@tonic-gate 
7140Sstevel@tonic-gate #if !defined(_LP64)
7150Sstevel@tonic-gate int
7160Sstevel@tonic-gate lockf64(int fildes, int function, off64_t size)
7170Sstevel@tonic-gate {
7180Sstevel@tonic-gate 	extern int _lockf64(int, int, off64_t);
7190Sstevel@tonic-gate 	int rv;
7200Sstevel@tonic-gate 
7210Sstevel@tonic-gate 	PERFORM(_lockf64(fildes, function, size))
7220Sstevel@tonic-gate }
7230Sstevel@tonic-gate #endif	/* !_LP64 */
7240Sstevel@tonic-gate 
7250Sstevel@tonic-gate ssize_t
7260Sstevel@tonic-gate msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg)
7270Sstevel@tonic-gate {
7280Sstevel@tonic-gate 	extern ssize_t _msgrcv(int, void *, size_t, long, int);
7290Sstevel@tonic-gate 	ssize_t rv;
7300Sstevel@tonic-gate 
7310Sstevel@tonic-gate 	PERFORM(_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg))
7320Sstevel@tonic-gate }
7330Sstevel@tonic-gate 
7340Sstevel@tonic-gate int
7350Sstevel@tonic-gate msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)
7360Sstevel@tonic-gate {
7370Sstevel@tonic-gate 	extern int _msgsnd(int, const void *, size_t, int);
7380Sstevel@tonic-gate 	int rv;
7390Sstevel@tonic-gate 
7400Sstevel@tonic-gate 	PERFORM(_msgsnd(msqid, msgp, msgsz, msgflg))
7410Sstevel@tonic-gate }
7420Sstevel@tonic-gate 
7430Sstevel@tonic-gate int
7440Sstevel@tonic-gate msync(caddr_t addr, size_t len, int flags)
7450Sstevel@tonic-gate {
7460Sstevel@tonic-gate 	extern int _msync(caddr_t, size_t, int);
7470Sstevel@tonic-gate 	int rv;
7480Sstevel@tonic-gate 
7490Sstevel@tonic-gate 	PERFORM(_msync(addr, len, flags))
7500Sstevel@tonic-gate }
7510Sstevel@tonic-gate 
7520Sstevel@tonic-gate int
7530Sstevel@tonic-gate open(const char *path, int oflag, ...)
7540Sstevel@tonic-gate {
7550Sstevel@tonic-gate 	extern int _open(const char *, int, ...);
7560Sstevel@tonic-gate 	mode_t mode;
7570Sstevel@tonic-gate 	int rv;
7580Sstevel@tonic-gate 	va_list ap;
7590Sstevel@tonic-gate 
7600Sstevel@tonic-gate 	va_start(ap, oflag);
7610Sstevel@tonic-gate 	mode = va_arg(ap, mode_t);
7620Sstevel@tonic-gate 	va_end(ap);
7630Sstevel@tonic-gate 	PERFORM(_open(path, oflag, mode))
7640Sstevel@tonic-gate }
7650Sstevel@tonic-gate 
7660Sstevel@tonic-gate #if !defined(_LP64)
7670Sstevel@tonic-gate int
7680Sstevel@tonic-gate open64(const char *path, int oflag, ...)
7690Sstevel@tonic-gate {
7700Sstevel@tonic-gate 	extern int _open64(const char *, int, ...);
7710Sstevel@tonic-gate 	mode_t mode;
7720Sstevel@tonic-gate 	int rv;
7730Sstevel@tonic-gate 	va_list ap;
7740Sstevel@tonic-gate 
7750Sstevel@tonic-gate 	va_start(ap, oflag);
7760Sstevel@tonic-gate 	mode = va_arg(ap, mode_t);
7770Sstevel@tonic-gate 	va_end(ap);
7780Sstevel@tonic-gate 	PERFORM(_open64(path, oflag, mode))
7790Sstevel@tonic-gate }
7800Sstevel@tonic-gate #endif	/* !_LP64 */
7810Sstevel@tonic-gate 
7820Sstevel@tonic-gate int
7830Sstevel@tonic-gate pause(void)
7840Sstevel@tonic-gate {
7850Sstevel@tonic-gate 	extern int _pause(void);
7860Sstevel@tonic-gate 	int rv;
7870Sstevel@tonic-gate 
7880Sstevel@tonic-gate 	PERFORM(_pause())
7890Sstevel@tonic-gate }
7900Sstevel@tonic-gate 
7910Sstevel@tonic-gate ssize_t
7920Sstevel@tonic-gate pread(int fildes, void *buf, size_t nbyte, off_t offset)
7930Sstevel@tonic-gate {
7940Sstevel@tonic-gate 	extern ssize_t _pread(int, void *, size_t, off_t);
7950Sstevel@tonic-gate 	ssize_t rv;
7960Sstevel@tonic-gate 
7970Sstevel@tonic-gate 	PERFORM(_pread(fildes, buf, nbyte, offset))
7980Sstevel@tonic-gate }
7990Sstevel@tonic-gate 
8000Sstevel@tonic-gate #if !defined(_LP64)
8010Sstevel@tonic-gate ssize_t
8020Sstevel@tonic-gate pread64(int fildes, void *buf, size_t nbyte, off64_t offset)
8030Sstevel@tonic-gate {
8040Sstevel@tonic-gate 	extern ssize_t _pread64(int, void *, size_t, off64_t);
8050Sstevel@tonic-gate 	ssize_t rv;
8060Sstevel@tonic-gate 
8070Sstevel@tonic-gate 	PERFORM(_pread64(fildes, buf, nbyte, offset))
8080Sstevel@tonic-gate }
8090Sstevel@tonic-gate #endif	/* !_LP64 */
8100Sstevel@tonic-gate 
8110Sstevel@tonic-gate ssize_t
8120Sstevel@tonic-gate pwrite(int fildes, const void *buf, size_t nbyte, off_t offset)
8130Sstevel@tonic-gate {
8140Sstevel@tonic-gate 	extern ssize_t _pwrite(int, const void *, size_t, off_t);
8150Sstevel@tonic-gate 	ssize_t rv;
8160Sstevel@tonic-gate 
8170Sstevel@tonic-gate 	PERFORM(_pwrite(fildes, buf, nbyte, offset))
8180Sstevel@tonic-gate }
8190Sstevel@tonic-gate 
8200Sstevel@tonic-gate #if !defined(_LP64)
8210Sstevel@tonic-gate ssize_t
8220Sstevel@tonic-gate pwrite64(int fildes, const void *buf, size_t nbyte, off64_t offset)
8230Sstevel@tonic-gate {
8240Sstevel@tonic-gate 	extern ssize_t _pwrite64(int, const void *, size_t, off64_t);
8250Sstevel@tonic-gate 	ssize_t rv;
8260Sstevel@tonic-gate 
8270Sstevel@tonic-gate 	PERFORM(_pwrite64(fildes, buf, nbyte, offset))
8280Sstevel@tonic-gate }
8290Sstevel@tonic-gate #endif	/* !_LP64 */
8300Sstevel@tonic-gate 
8310Sstevel@tonic-gate ssize_t
8320Sstevel@tonic-gate readv(int fildes, const struct iovec *iov, int iovcnt)
8330Sstevel@tonic-gate {
8340Sstevel@tonic-gate 	extern ssize_t _readv(int, const struct iovec *, int);
8350Sstevel@tonic-gate 	ssize_t rv;
8360Sstevel@tonic-gate 
8370Sstevel@tonic-gate 	PERFORM(_readv(fildes, iov, iovcnt))
8380Sstevel@tonic-gate }
8390Sstevel@tonic-gate 
8400Sstevel@tonic-gate int
8410Sstevel@tonic-gate sigpause(int sig)
8420Sstevel@tonic-gate {
8430Sstevel@tonic-gate 	extern int _sigpause(int);
8440Sstevel@tonic-gate 	int rv;
8450Sstevel@tonic-gate 
8460Sstevel@tonic-gate 	PERFORM(_sigpause(sig))
8470Sstevel@tonic-gate }
8480Sstevel@tonic-gate 
8490Sstevel@tonic-gate #pragma weak sigsuspend = _sigsuspend
8500Sstevel@tonic-gate int
8510Sstevel@tonic-gate _sigsuspend(const sigset_t *set)
8520Sstevel@tonic-gate {
8530Sstevel@tonic-gate 	extern int __sigsuspend(const sigset_t *);
8540Sstevel@tonic-gate 	int rv;
8550Sstevel@tonic-gate 
8560Sstevel@tonic-gate 	PROLOGUE_MASK(set)
8570Sstevel@tonic-gate 	rv = __sigsuspend(set);
8580Sstevel@tonic-gate 	EPILOGUE_MASK
8590Sstevel@tonic-gate 	return (rv);
8600Sstevel@tonic-gate }
8610Sstevel@tonic-gate 
8620Sstevel@tonic-gate int
8630Sstevel@tonic-gate _pollsys(struct pollfd *fds, nfds_t nfd, const timespec_t *timeout,
8640Sstevel@tonic-gate 	const sigset_t *sigmask)
8650Sstevel@tonic-gate {
8660Sstevel@tonic-gate 	extern int __pollsys(struct pollfd *, nfds_t, const timespec_t *,
8674843Sraf 	    const sigset_t *);
8680Sstevel@tonic-gate 	int rv;
8690Sstevel@tonic-gate 
8700Sstevel@tonic-gate 	PROLOGUE_MASK(sigmask)
8710Sstevel@tonic-gate 	rv = __pollsys(fds, nfd, timeout, sigmask);
8720Sstevel@tonic-gate 	EPILOGUE_MASK
8730Sstevel@tonic-gate 	return (rv);
8740Sstevel@tonic-gate }
8750Sstevel@tonic-gate 
8762248Sraf #pragma weak sigtimedwait = _sigtimedwait
8770Sstevel@tonic-gate int
8782248Sraf _sigtimedwait(const sigset_t *set, siginfo_t *infop, const timespec_t *timeout)
8790Sstevel@tonic-gate {
8802248Sraf 	extern int __sigtimedwait(const sigset_t *, siginfo_t *,
8814843Sraf 	    const timespec_t *);
8820Sstevel@tonic-gate 	siginfo_t info;
8830Sstevel@tonic-gate 	int sig;
8840Sstevel@tonic-gate 
8850Sstevel@tonic-gate 	PROLOGUE
8862248Sraf 	sig = __sigtimedwait(set, &info, timeout);
8870Sstevel@tonic-gate 	if (sig == SIGCANCEL &&
8880Sstevel@tonic-gate 	    (SI_FROMKERNEL(&info) || info.si_code == SI_LWP)) {
8890Sstevel@tonic-gate 		do_sigcancel();
8900Sstevel@tonic-gate 		errno = EINTR;
8910Sstevel@tonic-gate 		sig = -1;
8920Sstevel@tonic-gate 	}
8930Sstevel@tonic-gate 	EPILOGUE
8940Sstevel@tonic-gate 	if (sig != -1 && infop)
8951111Sraf 		(void) _private_memcpy(infop, &info, sizeof (*infop));
8960Sstevel@tonic-gate 	return (sig);
8970Sstevel@tonic-gate }
8980Sstevel@tonic-gate 
8990Sstevel@tonic-gate #pragma weak sigwait = _sigwait
9000Sstevel@tonic-gate int
9010Sstevel@tonic-gate _sigwait(sigset_t *set)
9020Sstevel@tonic-gate {
9032248Sraf 	return (_sigtimedwait(set, NULL, NULL));
9042248Sraf }
9052248Sraf 
9062248Sraf #pragma weak sigwaitinfo = _sigwaitinfo
9072248Sraf int
9082248Sraf _sigwaitinfo(const sigset_t *set, siginfo_t *info)
9092248Sraf {
9102248Sraf 	return (_sigtimedwait(set, info, NULL));
9112248Sraf }
9122248Sraf 
9132248Sraf #pragma weak sigqueue = _sigqueue
9142248Sraf int
9152248Sraf _sigqueue(pid_t pid, int signo, const union sigval value)
9162248Sraf {
9172248Sraf 	extern int __sigqueue(pid_t pid, int signo,
9184843Sraf 	    /* const union sigval */ void *value, int si_code, int block);
9192248Sraf 	return (__sigqueue(pid, signo, value.sival_ptr, SI_QUEUE, 0));
9200Sstevel@tonic-gate }
9210Sstevel@tonic-gate 
9220Sstevel@tonic-gate int
9230Sstevel@tonic-gate tcdrain(int fildes)
9240Sstevel@tonic-gate {
9250Sstevel@tonic-gate 	extern int _tcdrain(int);
9260Sstevel@tonic-gate 	int rv;
9270Sstevel@tonic-gate 
9280Sstevel@tonic-gate 	PERFORM(_tcdrain(fildes))
9290Sstevel@tonic-gate }
9300Sstevel@tonic-gate 
9310Sstevel@tonic-gate pid_t
9320Sstevel@tonic-gate wait(int *stat_loc)
9330Sstevel@tonic-gate {
9340Sstevel@tonic-gate 	extern pid_t _wait(int *);
9350Sstevel@tonic-gate 	pid_t rv;
9360Sstevel@tonic-gate 
9370Sstevel@tonic-gate 	PERFORM(_wait(stat_loc))
9380Sstevel@tonic-gate }
9390Sstevel@tonic-gate 
9400Sstevel@tonic-gate pid_t
9410Sstevel@tonic-gate wait3(int *statusp, int options, struct rusage *rusage)
9420Sstevel@tonic-gate {
9430Sstevel@tonic-gate 	extern pid_t _wait3(int *, int, struct rusage *);
9440Sstevel@tonic-gate 	pid_t rv;
9450Sstevel@tonic-gate 
9460Sstevel@tonic-gate 	PERFORM(_wait3(statusp, options, rusage))
9470Sstevel@tonic-gate }
9480Sstevel@tonic-gate 
9490Sstevel@tonic-gate int
9500Sstevel@tonic-gate waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options)
9510Sstevel@tonic-gate {
9520Sstevel@tonic-gate 	extern int _waitid(idtype_t, id_t, siginfo_t *, int);
9530Sstevel@tonic-gate 	int rv;
9540Sstevel@tonic-gate 
9550Sstevel@tonic-gate 	PERFORM(_waitid(idtype, id, infop, options))
9560Sstevel@tonic-gate }
9570Sstevel@tonic-gate 
9581219Sraf /*
9591219Sraf  * waitpid_cancel() is a libc-private symbol for internal use
9601219Sraf  * where cancellation semantics is desired (see system()).
9611219Sraf  */
9621219Sraf #pragma weak waitpid_cancel = waitpid
9630Sstevel@tonic-gate pid_t
9640Sstevel@tonic-gate waitpid(pid_t pid, int *stat_loc, int options)
9650Sstevel@tonic-gate {
9660Sstevel@tonic-gate 	extern pid_t _waitpid(pid_t, int *, int);
9670Sstevel@tonic-gate 	pid_t rv;
9680Sstevel@tonic-gate 
9690Sstevel@tonic-gate 	PERFORM(_waitpid(pid, stat_loc, options))
9700Sstevel@tonic-gate }
9710Sstevel@tonic-gate 
9720Sstevel@tonic-gate ssize_t
9730Sstevel@tonic-gate writev(int fildes, const struct iovec *iov, int iovcnt)
9740Sstevel@tonic-gate {
9750Sstevel@tonic-gate 	extern ssize_t _writev(int, const struct iovec *, int);
9760Sstevel@tonic-gate 	ssize_t rv;
9770Sstevel@tonic-gate 
9780Sstevel@tonic-gate 	PERFORM(_writev(fildes, iov, iovcnt))
9790Sstevel@tonic-gate }
980