ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/rtprocess.h
Revision: 3.6
Committed: Mon Oct 27 10:19:31 2003 UTC (20 years, 6 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 3.5: +14 -1 lines
Log Message:
Added gethomedir.c and various compatibility fixes.

File Contents

# User Rev Content
1 schorsch 3.6 /* RCSid $Id: rtprocess.h,v 3.5 2003/10/21 19:19:28 schorsch Exp $ */
2 schorsch 3.1 /*
3     * rtprocess.h
4     * Routines to communicate with separate process via dual pipes
5     *
6     * WARNING: On Windows, there's a system header named <process.h>.
7     */
8     #ifndef _RAD_PROCESS_H_
9     #define _RAD_PROCESS_H_
10    
11 schorsch 3.3 #include <errno.h>
12 schorsch 3.1 #ifdef _WIN32
13 schorsch 3.3 #include <windows.h> /* DWORD etc. */
14 schorsch 3.6 #include <stdio.h>
15 schorsch 3.3 typedef DWORD pid_t;
16     #include <process.h> /* getpid() and others */
17 schorsch 3.5 #define nice(inc) win_nice(inc)
18 schorsch 3.6
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     #ifdef __cplusplus
25     }
26     #endif
27    
28     #define popen(cmd,mode) win_popen(cmd,mode)
29     #define pclose(p) win_pclose(p)
30 schorsch 3.1 #else
31     #include <sys/param.h>
32     #endif
33    
34     #include "paths.h"
35    
36 schorsch 3.4 #ifdef __cplusplus
37     extern "C" {
38     #endif
39 schorsch 3.1
40     /* On Windows, a process ID is a DWORD. That might actually be the
41     same thing as an int, but it's better not to assume anything.
42    
43     This means that we shouldn't rely on PIDs and file descriptors
44     being the same type, so we have to describe processes with a struct,
45     instead of the original int[3]. To keep things simple, we typedef
46     the posix pid_t on those systems that don't have it already.
47     */
48    
49    
50     #ifndef PIPE_BUF
51     #ifdef PIPSIZ
52     #define PIPE_BUF PIPSIZ
53     #else
54     #ifdef PIPE_MAX
55     #define PIPE_BUF PIPE_MAX
56     #else
57     #define PIPE_BUF 512 /* hyperconservative */
58     #endif
59     #endif
60     #endif
61    
62     typedef struct {
63     int r; /* read handle */
64     int w; /* write handle */
65     int running; /* doing something */
66     pid_t pid; /* process ID */
67     } SUBPROC;
68    
69     #define SP_INACTIVE {-1,-1,0,0} /* for static initializations */
70    
71     extern int open_process(SUBPROC *pd, char *av[]);
72     extern int close_process(SUBPROC *pd);
73     extern int process(SUBPROC *pd, char *recvbuf, char *sendbuf, int nbr, int nbs);
74     extern int readbuf(int fd, char *bpos, int siz);
75     extern int writebuf(int fd, char *bpos, int siz);
76 schorsch 3.5
77     #ifdef _WIN32
78     /* any non-negative increment will send the process to IDLE_PRIORITY_CLASS. */
79     extern int win_nice(int inc);
80     #endif
81 schorsch 3.1
82    
83     #ifdef __cplusplus
84     }
85     #endif
86     #endif /* _RAD_PROCESS_H_ */
87