Changeset 20904 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Jun 24, 2009 7:34:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/tstSupSem-Zombie.cpp
r20903 r20904 41 41 #include <iprt/process.h> 42 42 #include <iprt/stream.h> 43 #include <iprt/string.h> 43 44 #include <iprt/test.h> 44 45 #include <iprt/time.h> … … 115 116 g_pSession = pSession; 116 117 117 /* 118 /* 118 119 * A semaphore of each kind and throw a bunch of threads on them. 119 120 */ … … 148 149 149 150 150 /** 151 * The parent main routine. 151 /** 152 * The parent main routine. 152 153 * @param argv0 The executable name (or whatever). 153 154 */ … … 191 192 } 192 193 RTTESTI_CHECK_RC_OK(rc); 193 if ( RT_SUCCESS(rc) 194 if ( RT_SUCCESS(rc) 194 195 && ( Status.enmReason != RTPROCEXITREASON_NORMAL 195 196 || Status.iStatus != 0)) 196 { 197 { 197 198 RTTestIFailed("child %u (%d) reason %d\n", Status.iStatus, Status.iStatus, Status.enmReason); 198 199 rc = VERR_PERMISSION_DENIED; … … 201 202 /* one zombie process is enough. */ 202 203 if (RT_FAILURE(rc)) 203 break; 204 break; 204 205 } 205 206 … … 210 211 int main(int argc, char **argv) 211 212 { 212 if ( argc == 2 213 if ( argc == 2 213 214 && !strcmp(argv[1], "--child")) 214 215 return mainChild();
Note:
See TracChangeset
for help on using the changeset viewer.