Return the UNIX time in milliseconds */
| 1308 | |
| 1309 | /* Return the UNIX time in milliseconds */ |
| 1310 | mstime_t mstime(void) { |
| 1311 | return ustime()/1000; |
| 1312 | } |
| 1313 | |
| 1314 | /* After an RDB dump or AOF rewrite we exit from children using _exit() instead of |
| 1315 | * exit(), because the latter may interact with the same file objects used by |
no test coverage detected