Changeset 2293 in kBuild for trunk/src/kash/shinstance.h
- Timestamp:
- Feb 28, 2009 7:25:12 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/shinstance.h
r2291 r2293 59 59 #endif 60 60 61 /** 62 * A child process. 63 */ 64 typedef struct shchild 65 { 66 pid_t pid; /**< The pid. */ 67 #if K_OS == K_OS_WINDOWS 68 void *hChild; /**< The process handle. */ 69 #endif 70 } shchild; 61 71 62 72 /* memalloc.c */ … … 135 145 shsigset_t sigmask; /**< Our signal mask. */ 136 146 char **shenviron; /**< The environment vector. */ 147 int num_children; /**< Number of children in the array. */ 148 shchild *children; /**< The child array. */ 137 149 138 150 /* alias.c */ … … 396 408 397 409 /* wait / process */ 410 int sh_add_child(shinstance *psh, pid_t pid, void *hChild); 398 411 #ifdef _MSC_VER 399 412 # include <process.h>
Note:
See TracChangeset
for help on using the changeset viewer.