Return the UNIX time in milliseconds */
| 1223 | |
| 1224 | /* Return the UNIX time in milliseconds */ |
| 1225 | mstime_t mstime(void) { |
| 1226 | return ustime()/1000; |
| 1227 | } |
| 1228 | |
| 1229 | /* After an RDB dump or AOF rewrite we exit from children using _exit() instead of |
| 1230 | * exit(), because the latter may interact with the same file objects used by |
no test coverage detected