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. */
| 1231 | * the parent process. However if we are testing the coverage normal exit() is |
| 1232 | * used in order to obtain the right coverage information. */ |
| 1233 | void exitFromChild(int retcode) { |
| 1234 | #ifdef COVERAGE_TEST |
| 1235 | exit(retcode); |
| 1236 | #else |
| 1237 | _exit(retcode); |
| 1238 | #endif |
| 1239 | } |
| 1240 | |
| 1241 | /*====================== Hash table type implementation ==================== */ |
| 1242 |
no outgoing calls
no test coverage detected