| 61 | const size_t DEFAULT_PAYLOAD = butil::IOBuf::DEFAULT_BLOCK_SIZE - BLOCK_OVERHEAD; |
| 62 | |
| 63 | void check_tls_block() { |
| 64 | ASSERT_EQ((butil::IOBuf::Block*)NULL, butil::iobuf::get_tls_block_head()); |
| 65 | printf("tls_block of butil::IOBuf was deleted\n"); |
| 66 | } |
| 67 | const int ALLOW_UNUSED check_dummy = butil::thread_atexit(check_tls_block); |
| 68 | |
| 69 | static butil::FlatSet<void*> s_set; |
nothing calls this directly
no test coverage detected