bmalloc 日志回调(空实现)
| 20 | |
| 21 | /// bmalloc 日志回调(空实现) |
| 22 | struct BmallocLogger { |
| 23 | auto operator()(const char* format, ...) const -> int { |
| 24 | (void)format; |
| 25 | return 0; |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | /** |
| 30 | * @brief bmalloc 线程安全锁(基于 SpinLock) |
nothing calls this directly
no outgoing calls
no test coverage detected