5 Copyright © 2003, The AROS Development Team. All rights reserved.
13 #define P_WAIT 0 /* Wait for the child process to terminate. */
14 #define P_NOWAIT 1 /* Execute the parent and the child concurrently. */
15 #define P_OVERLAY 2 /* Replace parent's image with child's. Same as exec*(3). */
17 int spawnv(int mode
, const char *path
, char *const argv
[]);
18 int spawnvp(int mode
, const char *path
, char *const argv
[]);
21 #endif /* _PROCESS_H_ */