~ubuntu-branches/ubuntu/saucy/ladr/saucy

« back to all changes in this revision

Viewing changes to ladr/memory.c

  • Committer: Package Import Robot
  • Author(s): Frank Lichtenheld
  • Date: 2013-05-25 11:43:32 UTC
  • mfrom: (5.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20130525114332-lkzco1dti2hwrf7v
Tags: 0.0.200911a-2
* QA upload.
* Upload to unstable.
* Change maintainer to QA group.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include "memory.h"
20
20
 
21
21
#define MALLOC_MEGS        20  /* size of blocks malloced by palloc */
22
 
#define DEFAULT_MAX_MEGS  200  /* change with set_max_megs(n) */
 
22
#define DEFAULT_MAX_MEGS  500  /* change with set_max_megs(n) */
23
23
#define MAX_MEM_LISTS     500  /* number of lists of available nodes */
24
24
 
25
25
static void ** M[MAX_MEM_LISTS];