10 |
|
|
11 |
|
#include <errno.h> |
12 |
|
#include <stdio.h> |
13 |
< |
#ifdef _WIN32 |
13 |
> |
#if defined(_WIN32) || defined(_WIN64) |
14 |
|
#include <windows.h> /* DWORD etc. */ |
15 |
|
typedef DWORD RT_PID; |
16 |
|
#include <process.h> /* getpid() and others */ |
17 |
+ |
#define getpid _getpid |
18 |
+ |
#define execv _execv |
19 |
+ |
#define execvp _execvp |
20 |
|
#else |
21 |
|
#include <sys/param.h> |
22 |
|
#include <sys/types.h> |
68 |
|
extern int readbuf(int fd, char *bpos, int siz); |
69 |
|
extern int writebuf(int fd, char *bpos, int siz); |
70 |
|
|
71 |
< |
#ifdef _WIN32 |
71 |
> |
#if defined(_WIN32) || defined(_WIN64) |
72 |
|
/* any non-negative increment will send the process to IDLE_PRIORITY_CLASS. */ |
73 |
|
extern int win_kill(RT_PID pid, int sig /* ignored */); |
74 |
|
extern int win_nice(int inc); |