| 163 | } |
| 164 | |
| 165 | void rw_cache_init(TRWCache* cache, TSkBuffMng* pool) |
| 166 | { |
| 167 | TAILQ_INIT(&cache->list); |
| 168 | cache->len = 0; |
| 169 | cache->count = 0; |
| 170 | cache->pool = pool; |
| 171 | } |
| 172 | |
| 173 | void rw_cache_destroy(TRWCache* cache) |
| 174 | { |
no outgoing calls
no test coverage detected