| 351 | |
| 352 | }; |
| 353 | struct stTimeout_t |
| 354 | { |
| 355 | stTimeoutItemLink_t *pItems; |
| 356 | int iItemSize; |
| 357 | |
| 358 | unsigned long long ullStart; |
| 359 | long long llStartIdx; |
| 360 | }; |
| 361 | stTimeout_t *AllocTimeout( int iSize ) |
| 362 | { |
| 363 | stTimeout_t *lp = (stTimeout_t*)calloc( 1,sizeof(stTimeout_t) ); |
nothing calls this directly
no outgoing calls
no test coverage detected