Ignore:
Timestamp:
Jul 13, 2008 12:24:55 PM (16 years ago)
Author:
bennylp
Message:

Ticket #518: some fixes for growing memory usage in PJSUA-LIB, by using temporary pools for temporary variables and by having separate pool for each account and buddy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua_internal.h

    r2079 r2130  
    9999typedef struct pjsua_acc 
    100100{ 
     101    pj_pool_t       *pool;          /**< Pool for this account.         */ 
    101102    pjsua_acc_config cfg;           /**< Account configuration.         */ 
    102103    pj_bool_t        valid;         /**< Is this account valid?         */ 
     
    156157typedef struct pjsua_buddy 
    157158{ 
     159    pj_pool_t           *pool;      /**< Pool for this buddy.           */ 
    158160    unsigned             index;     /**< Buddy index.                   */ 
    159161    pj_str_t             uri;       /**< Buddy URI.                     */ 
Note: See TracChangeset for help on using the changeset viewer.