File: spawn.h

package info (click to toggle)
glibc 2.31-13%2Bdeb11u6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 279,700 kB
  • sloc: ansic: 1,026,760; asm: 260,751; makefile: 12,193; sh: 10,548; python: 9,618; cpp: 5,233; awk: 1,956; perl: 514; yacc: 290; pascal: 182; sed: 73
file content (39 lines) | stat: -rw-r--r-- 1,099 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef _SPAWN_H
#include <posix/spawn.h>

# ifndef _ISOMAC
__typeof (posix_spawn) __posix_spawn;
libc_hidden_proto (__posix_spawn)

__typeof (posix_spawn_file_actions_addclose)
  __posix_spawn_file_actions_addclose attribute_hidden;

__typeof (posix_spawn_file_actions_adddup2)
  __posix_spawn_file_actions_adddup2 attribute_hidden;

__typeof (posix_spawn_file_actions_addopen)
  __posix_spawn_file_actions_addopen attribute_hidden;

__typeof (posix_spawn_file_actions_destroy)
  __posix_spawn_file_actions_destroy attribute_hidden;

__typeof (posix_spawn_file_actions_init) __posix_spawn_file_actions_init
  attribute_hidden;

__typeof (posix_spawnattr_init) __posix_spawnattr_init
  attribute_hidden;

__typeof (posix_spawnattr_destroy) __posix_spawnattr_destroy
  attribute_hidden;

__typeof (posix_spawnattr_setflags) __posix_spawnattr_setflags
  attribute_hidden;

__typeof (posix_spawnattr_setsigdefault) __posix_spawnattr_setsigdefault
  attribute_hidden;

__typeof (posix_spawnattr_setsigmask) __posix_spawnattr_setsigmask
  attribute_hidden;

# endif /* !_ISOMAC  */
#endif /* spawn.h  */