TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
gcl (2.6.12-79) unstable; urgency=medium
* Version_2_6_13pre70
Gbp-Pq: Name Version_2_6_13pre71
asm(".code");
asm(".export hppa_save_regs, entry");
+ asm(".label hppa_save_regs");
asm(".proc");
asm(".callinfo");
- asm(".label hppa_save_regs");
asm(".entry");
asm("stw %r3,0(%arg0)");
}
gc_page_min=0.5;
- if ((e=getenv("GCL_GC_PAGE_MIN"))) {
+ if ((e=getenv("GCL_GC_PAGE_MIN"))||(e=getenv("GCL_GC_PAGE_THRESH"))) {/*legacy support*/
massert(sscanf(e,"%lf",&gc_page_min)==1);
massert(gc_page_min>=0.0);
}
massert(gc_page_max>=0.0);
}
- multiprocess_memory_pool=(e=getenv("GCL_MULTIPROCESS_MEMORY_POOL")) && *e;
+ multiprocess_memory_pool=
+ (e=getenv("GCL_MULTIPROCESS_MEMORY_POOL")) && (*e=='t' || *e=='T');
wait_on_abort=0;
if ((e=getenv("GCL_WAIT_ON_ABORT")))