Changeset 1441
- Timestamp:
- Sep 19, 2007 12:09:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.5-stable/pjlib/src/pj/ioqueue_select.c
r1158 r1441 136 136 #include "ioqueue_common_abs.c" 137 137 138 #if PJ_IOQUEUE_HAS_SAFE_UNREG 139 /* Scan closing keys to be put to free list again */ 140 static void scan_closing_keys(pj_ioqueue_t *ioqueue); 141 #endif 142 138 143 /* 139 144 * pj_ioqueue_name() … … 338 343 */ 339 344 #if PJ_IOQUEUE_HAS_SAFE_UNREG 345 346 /* Scan closing_keys first to let them come back to free_list */ 347 scan_closing_keys(ioqueue); 348 340 349 pj_assert(!pj_list_empty(&ioqueue->free_list)); 341 350 if (pj_list_empty(&ioqueue->free_list)) {
Note: See TracChangeset
for help on using the changeset viewer.