After an RDB dump or AOF rewrite we exit from children using _exit() instead of * exit(), because the latter may interact with the same file objects used by * the parent process. However if we are testing the coverage normal exit() is * used in order to obtain the right coverage information. */
| 1316 | * the parent process. However if we are testing the coverage normal exit() is |
| 1317 | * used in order to obtain the right coverage information. */ |
| 1318 | void exitFromChild(int retcode) { |
| 1319 | #ifdef COVERAGE_TEST |
| 1320 | exit(retcode); |
| 1321 | #else |
| 1322 | _exit(retcode); |
| 1323 | #endif |
| 1324 | } |
| 1325 | |
| 1326 | /*====================== Hash table type implementation ==================== */ |
| 1327 |
no outgoing calls
no test coverage detected