| 7 |
|
*/ |
| 8 |
|
#ifndef _RAD_PROCESS_H_ |
| 9 |
|
#define _RAD_PROCESS_H_ |
| 10 |
– |
#ifdef __cplusplus |
| 11 |
– |
extern "C" { |
| 12 |
– |
#endif |
| 10 |
|
|
| 11 |
|
#include <errno.h> |
| 12 |
|
#ifdef _WIN32 |
| 13 |
|
#include <windows.h> /* DWORD etc. */ |
| 14 |
|
typedef DWORD pid_t; |
| 15 |
|
#include <process.h> /* getpid() and others */ |
| 16 |
+ |
#define nice(inc) win_nice(inc) |
| 17 |
|
#else |
| 18 |
|
#include <sys/param.h> |
| 19 |
|
#endif |
| 20 |
|
|
| 21 |
|
#include "paths.h" |
| 22 |
|
|
| 23 |
+ |
#ifdef __cplusplus |
| 24 |
+ |
extern "C" { |
| 25 |
+ |
#endif |
| 26 |
|
|
| 27 |
|
/* On Windows, a process ID is a DWORD. That might actually be the |
| 28 |
|
same thing as an int, but it's better not to assume anything. |
| 31 |
|
being the same type, so we have to describe processes with a struct, |
| 32 |
|
instead of the original int[3]. To keep things simple, we typedef |
| 33 |
|
the posix pid_t on those systems that don't have it already. |
| 33 |
– |
|
| 34 |
– |
Some older Windows systems use negative PIDs. Open_process() and |
| 35 |
– |
close_process() will convert those to positive values during |
| 36 |
– |
runtime, so that client modules can still use -1 as invalid PID. |
| 34 |
|
*/ |
| 35 |
|
|
| 36 |
|
|
| 60 |
|
extern int process(SUBPROC *pd, char *recvbuf, char *sendbuf, int nbr, int nbs); |
| 61 |
|
extern int readbuf(int fd, char *bpos, int siz); |
| 62 |
|
extern int writebuf(int fd, char *bpos, int siz); |
| 63 |
+ |
|
| 64 |
+ |
#ifdef _WIN32 |
| 65 |
+ |
/* any non-negative increment will send the process to IDLE_PRIORITY_CLASS. */ |
| 66 |
+ |
extern int win_nice(int inc); |
| 67 |
+ |
#endif |
| 68 |
|
|
| 69 |
|
|
| 70 |
|
#ifdef __cplusplus |