compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / include / process.h
blobf626ed39fada1c07fc4ad9d3c6de459ca94eacb7
1 #ifndef _PROCESS_H_
2 #define _PROCESS_H_
4 /*
5 Copyright © 2003-2011, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <aros/system.h>
11 __BEGIN_DECLS
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[]);
20 __END_DECLS
21 #endif /* _PROCESS_H_ */