Determine whether we are in the context of a bgsave, in which case the process is independent and should not acquire locks
| 10 | // Determine whether we are in the context of a bgsave, in which case |
| 11 | // the process is independent and should not acquire locks |
| 12 | static inline bool _shouldAcquireLocks(void) { |
| 13 | return !Globals_Get_ProcessIsChild(); |
| 14 | } |
| 15 | |
| 16 | static void _RdbSaveHeader |
| 17 | ( |
no test coverage detected