48 lines
1021 B
C
48 lines
1021 B
C
/*
|
|
* $Id: stx.c,v 1.27 2005-05-22 15:38:31 bacon Exp $
|
|
*/
|
|
|
|
#include <xp/stx/stx.h>
|
|
#include <xp/stx/memory.h>
|
|
#include <xp/stx/misc.h>
|
|
|
|
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_method = XP_STX_NIL;
|
|
stx->class_context = 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);
|
|
}
|
|
|