ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/rtprocess.h
(Generate patch)

Comparing ray/src/common/rtprocess.h (file contents):
Revision 3.15 by greg, Fri Mar 4 02:48:14 2016 UTC vs.
Revision 3.16 by schorsch, Sun Mar 6 01:13:17 2016 UTC

# Line 10 | Line 10
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   #else
20    #include <sys/param.h>
21    #include <sys/types.h>
# Line 65 | Line 67 | extern int process(SUBPROC *pd, char *recvbuf, char *s
67   extern int readbuf(int fd, char *bpos, int siz);
68   extern int writebuf(int fd, char *bpos, int siz);
69  
70 < #ifdef _WIN32
70 > #if defined(_WIN32) || defined(_WIN64)
71   /* any non-negative increment will send the process to IDLE_PRIORITY_CLASS. */
72   extern int win_kill(RT_PID pid, int sig /* ignored */);
73   extern int win_nice(int inc);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines