Changeset 1440 for pjproject/trunk/pjlib/src/pj/ioqueue_select.c
- Timestamp:
- Sep 19, 2007 12:03:28 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ioqueue_select.c
r1405 r1440 120 120 #include "ioqueue_common_abs.c" 121 121 122 #if PJ_IOQUEUE_HAS_SAFE_UNREG 123 /* Scan closing keys to be put to free list again */ 124 static void scan_closing_keys(pj_ioqueue_t *ioqueue); 125 #endif 126 122 127 /* 123 128 * pj_ioqueue_name() … … 322 327 */ 323 328 #if PJ_IOQUEUE_HAS_SAFE_UNREG 329 330 /* Scan closing_keys first to let them come back to free_list */ 331 scan_closing_keys(ioqueue); 332 324 333 pj_assert(!pj_list_empty(&ioqueue->free_list)); 325 334 if (pj_list_empty(&ioqueue->free_list)) {
Note: See TracChangeset
for help on using the changeset viewer.