9 |
|
#define _RAD_PROCESS_H_ |
10 |
|
|
11 |
|
#include <errno.h> |
12 |
+ |
#include <stdio.h> |
13 |
|
#ifdef _WIN32 |
14 |
|
#include <windows.h> /* DWORD etc. */ |
14 |
– |
#include <stdio.h> |
15 |
|
typedef DWORD RT_PID; |
16 |
|
#include <process.h> /* getpid() and others */ |
17 |
– |
#define nice(inc) win_nice(inc) |
18 |
– |
|
19 |
– |
#ifdef __cplusplus |
20 |
– |
extern "C" { |
21 |
– |
#endif |
22 |
– |
extern FILE *win_popen(char *command, char *type); |
23 |
– |
extern int win_pclose(FILE *p); |
24 |
– |
int win_kill(RT_PID pid, int sig /* ignored */); |
25 |
– |
#define kill(pid,sig) win_kill(pid,sig) |
26 |
– |
#ifdef __cplusplus |
27 |
– |
} |
28 |
– |
#endif |
29 |
– |
#ifdef _MSC_VER |
30 |
– |
#define popen(cmd,mode) _popen(cmd,mode) |
31 |
– |
#define pclose(p) _pclose(p) |
32 |
– |
#else |
33 |
– |
#define popen(cmd,mode) win_popen(cmd,mode) |
34 |
– |
#define pclose(p) win_pclose(p) |
35 |
– |
#endif |
17 |
|
#else |
37 |
– |
#include <stdio.h> |
18 |
|
#include <sys/param.h> |
19 |
|
#include <sys/types.h> |
20 |
|
typedef pid_t RT_PID; |
57 |
|
|
58 |
|
#define SP_INACTIVE {-1,-1,0,0} /* for static initializations */ |
59 |
|
|
60 |
+ |
#define close_process(pd) close_processes(pd,1) |
61 |
+ |
|
62 |
|
extern int open_process(SUBPROC *pd, char *av[]); |
63 |
< |
extern int close_process(SUBPROC *pd); |
63 |
> |
extern int close_processes(SUBPROC pd[], int nproc); |
64 |
|
extern int process(SUBPROC *pd, char *recvbuf, char *sendbuf, int nbr, int nbs); |
65 |
|
extern int readbuf(int fd, char *bpos, int siz); |
66 |
|
extern int writebuf(int fd, char *bpos, int siz); |
67 |
|
|
68 |
|
#ifdef _WIN32 |
69 |
|
/* any non-negative increment will send the process to IDLE_PRIORITY_CLASS. */ |
70 |
+ |
extern int win_kill(RT_PID pid, int sig /* ignored */); |
71 |
|
extern int win_nice(int inc); |
72 |
|
#endif |
73 |
|
|