Disabled some development code in pobj.c, just so it passes compilation.

This commit is contained in:
Gilad Arnold 2004-12-14 01:33:25 +00:00
parent 4329801481
commit 8137a0914d

View file

@ -1411,7 +1411,7 @@ pobj_boot_init (void)
int int
pobj_init (struct pobj_memfunc *ext_memfunc, struct pobj_memfunc *int_memfunc) pobj_init (struct pobj_memfunc *ext_memfunc /* , struct pobj_memfunc *int_memfunc */)
{ {
recordid tmp_rid; recordid tmp_rid;
int xid; int xid;
@ -1446,6 +1446,8 @@ pobj_init (struct pobj_memfunc *ext_memfunc, struct pobj_memfunc *int_memfunc)
if (ext_memfunc->free) if (ext_memfunc->free)
g_ext_memfunc.free = ext_memfunc->free; g_ext_memfunc.free = ext_memfunc->free;
} }
#if 0
/* Gilad, 2004-12-13: disabled in order to make project compile... */
if (int_memfunc) { if (int_memfunc) {
/* STOPPED HERE: don't necessarily initiate a whole new structure /* STOPPED HERE: don't necessarily initiate a whole new structure
@ -1460,6 +1462,7 @@ pobj_init (struct pobj_memfunc *ext_memfunc, struct pobj_memfunc *int_memfunc)
if (int_memfunc->free) if (int_memfunc->free)
g_int_memfunc.free = int_memfunc->free; g_int_memfunc.free = int_memfunc->free;
} }
#endif
Tinit (); Tinit ();