/* * $Id: stx.c,v 1.29 2005-05-25 16:44:05 bacon Exp $ */ #include #include #include xp_stx_t* xp_stx_open (xp_stx_t* stx, xp_stx_word_t capacity) { if (stx == XP_NULL) { stx = (xp_stx_t*)xp_stx_malloc (xp_sizeof(stx)); if (stx == XP_NULL) return XP_NULL; stx->__malloced = xp_true; } else stx->__malloced = xp_false; if (xp_stx_memory_open (&stx->memory, capacity) == XP_NULL) { if (stx->__malloced) xp_stx_free (stx); return XP_NULL; } stx->nil = XP_STX_NIL; stx->true = XP_STX_TRUE; stx->false = XP_STX_FALSE; stx->symbol_table = XP_STX_NIL; stx->smalltalk = XP_STX_NIL; stx->class_symlink = XP_STX_NIL; stx->class_symbol = XP_STX_NIL; stx->class_metaclass = XP_STX_NIL; stx->class_pairlink = XP_STX_NIL; stx->class_object = XP_STX_NIL; stx->class_class = XP_STX_NIL; stx->class_array = XP_STX_NIL; stx->__wantabort = xp_false; return stx; } void xp_stx_close (xp_stx_t* stx) { xp_stx_memory_close (&stx->memory); if (stx->__malloced) xp_stx_free (stx); }