source: vendor/glibc/current/posix/spawn_int.h

Last change on this file was 1023, checked in by bird, 22 years ago

GLIBC v2.3.2 sources. (LGPL)

  • Property cvs2svn:cvs-rev set to 1.1.1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 726 bytes
Line 
1/* Data structure to contain the action information. */
2struct __spawn_action
3{
4 enum
5 {
6 spawn_do_close,
7 spawn_do_dup2,
8 spawn_do_open
9 } tag;
10
11 union
12 {
13 struct
14 {
15 int fd;
16 } close_action;
17 struct
18 {
19 int fd;
20 int newfd;
21 } dup2_action;
22 struct
23 {
24 int fd;
25 const char *path;
26 int oflag;
27 mode_t mode;
28 } open_action;
29 } action;
30};
31
32extern int __posix_spawn_file_actions_realloc (posix_spawn_file_actions_t *
33 file_actions);
34
35extern int __spawni (pid_t *pid, const char *path,
36 const posix_spawn_file_actions_t *file_actions,
37 const posix_spawnattr_t *attrp, char *const argv[],
38 char *const envp[], int use_path);
Note: See TracBrowser for help on using the repository browser.