diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2012-01-09 17:06:20 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2012-01-09 17:06:20 +0000 |
commit | 4b4391b74d2c3a7c7a6aa1c17e5d664a374fa27a (patch) | |
tree | 642029031784cb873d42ab6f270162f487f46ec4 /newlib/libc/include/process.h | |
parent | 02c8acc1b47a652586255150433cb714bf110040 (diff) | |
download | cygnal-4b4391b74d2c3a7c7a6aa1c17e5d664a374fa27a.tar.gz cygnal-4b4391b74d2c3a7c7a6aa1c17e5d664a374fa27a.tar.bz2 cygnal-4b4391b74d2c3a7c7a6aa1c17e5d664a374fa27a.zip |
* libc/include/process.h: Remove Cygwin-only header.
Diffstat (limited to 'newlib/libc/include/process.h')
-rw-r--r-- | newlib/libc/include/process.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/newlib/libc/include/process.h b/newlib/libc/include/process.h deleted file mode 100644 index fe6ec1613..000000000 --- a/newlib/libc/include/process.h +++ /dev/null @@ -1,37 +0,0 @@ -/* process.h. Define spawn family of functions as provided by Cygwin. - The original file of this name is a MS/DOS invention. */ - -#ifndef __PROCESS_H_ -#define __PROCESS_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -/* For the exec functions, include unistd.h. */ - -int spawnl(int mode, const char *path, const char *argv0, ...); -int spawnle(int mode, const char *path, const char *argv0, ... /*, char * const *envp */); -int spawnlp(int mode, const char *path, const char *argv0, ...); -int spawnlpe(int mode, const char *path, const char *argv0, ... /*, char * const *envp */); - -int spawnv(int mode, const char *path, const char * const *argv); -int spawnve(int mode, const char *path, const char * const *argv, const char * const *envp); -int spawnvp(int mode, const char *path, const char * const *argv); -int spawnvpe(int mode, const char *path, const char * const *argv, const char * const *envp); - -int cwait(int *, int, int); - -#define _P_WAIT 1 -#define _P_NOWAIT 2 /* always generates error */ -#define _P_OVERLAY 3 -#define _P_NOWAITO 4 -#define _P_DETACH 5 - -#define WAIT_CHILD 1 - -#ifdef __cplusplus -} -#endif - -#endif |