Changeset 684


Ignore:
Timestamp:
Aug 15, 2006 8:25:42 PM (18 years ago)
Author:
bennylp
Message:

Fixed yet another bug for 64bit target: error in initializing caching pool because internal pool size is too small. Increased by 256 bytes.

File:
1 edited

Legend:

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

    r624 r684  
    7070    cp->factory.on_block_free = &cpool_on_block_free; 
    7171 
    72     cp->pool = pj_pool_create_int(&cp->factory, "cachingpool", 256,  
     72    cp->pool = pj_pool_create_int(&cp->factory, "cachingpool", 512,  
    7373                                  0, NULL); 
    7474    i = pj_mutex_create_simple(cp->pool, "cachingpool", &cp->mutex); 
Note: See TracChangeset for help on using the changeset viewer.