posix_spawn: add posix_spawn_file_actions_add[f]chdir_np.

see http://austingroupbugs.net/view.php?id=1208
and https://sourceware.org/bugzilla/show_bug.cgi?id=17405

* also free paths in posix_spawn_file_actions_destroy().

Change-Id: I8bed848154025bd5a25322bdc4c25aa417f86ec6
Reviewed-on: https://review.haiku-os.org/c/1010
Reviewed-by: Rene Gollent <[email protected]>
This commit is contained in:
Jérôme Duval
2019-02-06 16:39:33 +00:00
committed by Rene Gollent
parent e4803b2c61
commit f33f4868fe
2 changed files with 107 additions and 2 deletions
+33
View File
@@ -0,0 +1,33 @@
/*
* Copyright 2019 Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the Haiku License.
*/
#ifndef _GNU_SPAWN_H_
#define _GNU_SPAWN_H_
#include_next <spawn.h>
#ifdef _GNU_SOURCE
#ifdef __cplusplus
extern "C" {
#endif
extern int posix_spawn_file_actions_addchdir_np(
posix_spawn_file_actions_t *file_actions, const char *path);
extern int posix_spawn_file_actions_addfchdir_np(
posix_spawn_file_actions_t *file_actions, int fildes);
#ifdef __cplusplus
}
#endif
#endif
#endif /* _GNU_SPAWN_H_ */