1
0
Fork 0

(svn r1159) -Fix: pid_t was unknown to windows; typedeffed to int.

release/0.4.5
darkvater 2004-12-18 18:05:56 +00:00
parent 1fd06cf773
commit 158a4d897b
1 changed files with 3 additions and 0 deletions

View File

@ -422,6 +422,9 @@ VARDEF int _debug_ai_level;
VARDEF int _debug_net_level;
/* Forking stuff */
#if !defined(pid_t)
typedef int pid_t;
#endif
VARDEF bool _dedicated_forks;
VARDEF bool _dedicated_enabled;
VARDEF pid_t _dedicated_pid;