Mercurial > hg > xemacs-beta
comparison src/ntproc.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | 373ced43e288 |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
225 find_child_pid (DWORD pid) | 225 find_child_pid (DWORD pid) |
226 { | 226 { |
227 child_process *cp; | 227 child_process *cp; |
228 | 228 |
229 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--) | 229 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--) |
230 if (CHILD_ACTIVE (cp) && pid == cp->pid) | 230 if (CHILD_ACTIVE (cp) && pid == (DWORD) cp->pid) |
231 return cp; | 231 return cp; |
232 return NULL; | 232 return NULL; |
233 } | 233 } |
234 | 234 |
235 /* Function to do blocking read of one byte, needed to implement | 235 /* Function to do blocking read of one byte, needed to implement |