Ignore:
Timestamp:
May 11, 2007 3:14:34 PM (17 years ago)
Author:
bennylp
Message:

HUGE changeset to make the rest of the libraries compile with C++ mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ioqueue_select.c

    r1159 r1266  
    194194 
    195195    /* Create and init common ioqueue stuffs */ 
    196     ioqueue = pj_pool_alloc(pool, sizeof(pj_ioqueue_t)); 
     196    ioqueue = PJ_POOL_ALLOC_T(pool, pj_ioqueue_t); 
    197197    ioqueue_init(ioqueue); 
    198198 
     
    231231        pj_ioqueue_key_t *key; 
    232232 
    233         key = pj_pool_alloc(pool, sizeof(pj_ioqueue_key_t)); 
     233        key = PJ_POOL_ALLOC_T(pool, pj_ioqueue_key_t); 
    234234        key->ref_count = 0; 
    235235        rc = pj_mutex_create_recursive(pool, NULL, &key->mutex); 
Note: See TracChangeset for help on using the changeset viewer.