summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/spawn.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/spawn.h b/include/spawn.h
index 19cdc37d1ab..32cdd85ca27 100644
--- a/include/spawn.h
+++ b/include/spawn.h
@@ -1,4 +1,4 @@
-/* $NetBSD: spawn.h,v 1.4 2012/02/22 17:51:01 martin Exp $ */
+/* $NetBSD: spawn.h,v 1.5 2021/11/07 14:34:30 christos Exp $ */
/*-
* Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org>
@@ -56,6 +56,10 @@ int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t * __restrict,
int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
+int posix_spawn_file_actions_addchdir(posix_spawn_file_actions_t * __restrict,
+ const char * __restrict);
+int posix_spawn_file_actions_addfchdir(posix_spawn_file_actions_t *, int);
+
/*
* Spawn attributes
*/
0000'>2007-12-08ANSIfy most of the function definitions in sys/compat (but not ndis).dsl 2007-07-08fix pasto: sigframe.sf_sc is of type linux_sigcontextpooka 2007-03-04fix fallout from caddr_t changes.yamt 2007-03-04Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.christos 2007-02-09Merge newlock2 to head.ad 2006-07-23Use the LWP cached credentials where sane.ad 2006-05-15include kauth.h for kauth_cred_geteuid.yamt 2006-05-14integrate kauth.elad 2005-12-11merge ktrace-lwp.christos 2005-05-20Define linux_usertrap function, and set it in struct emul. For allfvdl 2003-10-10Adapt to SIGINFO changes.matt 2003-09-26Fix "constify sendsig/trapsignal" fallout for non-siginfo'd archs. Testsimonb 2003-06-29Back out the lwp/ktrace changes. They contained a lot of colateral damage,fvdl 2003-06-29Fix 'struct lwp *' lossage.simonb 2003-01-18Merge the nathanw_sa branch.thorpej