| 129 | #define LOCK_MAGIC 0x48736f6c |
| 130 | |
| 131 | struct lock_record { |
| 132 | uint32_t magic; |
| 133 | uint32_t owner_uid; |
| 134 | unsigned char cg_enabled; |
| 135 | unsigned char is_initialized; |
| 136 | unsigned char rfu[2]; |
| 137 | }; |
| 138 | |
| 139 | static int lock_fd = -1; |
| 140 | static struct lock_record lock; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…