*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@457 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
d14bc4e100
commit
00c8c8f7ac
1 changed files with 4 additions and 5 deletions
|
|
@ -23,16 +23,15 @@ static char cvsroot[] = "$Header$";
|
|||
#endif
|
||||
|
||||
static int PoolSize = DOH_POOL_SIZE;
|
||||
|
||||
DOH *DohNone = 0; /* The DOH None object */
|
||||
|
||||
static DohBase *FreeFragments[DOH_MAX_FRAG]; /* Array of free memory fragments */
|
||||
|
||||
typedef struct pool {
|
||||
char *ptr; /* Start of pool */
|
||||
int len; /* Length of pool */
|
||||
int current; /* Current position for next allocation */
|
||||
struct pool *next; /* Next pool */
|
||||
char *ptr; /* Start of pool */
|
||||
int len; /* Length of pool */
|
||||
int current; /* Current position for next allocation */
|
||||
struct pool *next; /* Next pool */
|
||||
} Pool;
|
||||
|
||||
static Pool *Pools = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue