added STIX_EPFULL

fixed a bug in starting an initial process
started writing an integer-to-string conversion function
This commit is contained in:
hyunghwan.chung
2015-12-02 15:24:13 +00:00
parent 283c3652db
commit 2fbb4d3a71
10 changed files with 333 additions and 138 deletions

View File

@ -50,7 +50,7 @@
#define STIX_USE_OBJECT_TRAILER
/* this is for gc debugging */
/*#define STIX_DEBUG_GC_001*/
#define STIX_DEBUG_GC_001
/*#define STIX_DEBUG_EXEC*/
#define STIX_PROFILE_EXEC
@ -943,23 +943,24 @@ stix_oop_t stix_instantiatewithtrailer (
/* sym.c */
/* ========================================================================= */
stix_oop_t stix_makesymbol (
stix_t* stix,
stix_t* stix,
const stix_ooch_t* ptr,
stix_oow_t len
stix_oow_t len
);
stix_oop_t stix_findsymbol (
stix_t* stix,
stix_t* stix,
const stix_ooch_t* ptr,
stix_oow_t len
stix_oow_t len
);
stix_oop_t stix_makestring (
stix_t* stix,
stix_t* stix,
const stix_ooch_t* ptr,
stix_oow_t len
stix_oow_t len
);
/* ========================================================================= */
/* dic.c */
/* ========================================================================= */
@ -1103,6 +1104,13 @@ stix_oop_t stix_strtoint (
stix_oow_t len,
int radix
);
stix_oop_t stix_inttostr (
stix_t* stix,
stix_oop_t num,
int radix
);
/* ========================================================================= */
/* comp.c */
/* ========================================================================= */