picrin/extlib/benz/include/picrin/config.h

28 lines
820 B
C
Raw Normal View History

2014-08-25 00:38:09 -04:00
/**
* See Copyright Notice in picrin.h
*/
2015-05-27 12:55:55 -04:00
/** no dependency on libc */
/* #define PIC_ENABLE_LIBC 1 */
2015-06-19 01:03:52 -04:00
/** use stdio or not */
/* #define PIC_ENABLE_STDIO 1 */
/** essential external functions */
/* #define PIC_JMPBUF jmp_buf */
2015-05-27 11:41:55 -04:00
/* #define PIC_SETJMP(pic, buf) setjmp(buf) */
/* #define PIC_LONGJMP(pic, buf, val) longjmp((buf), (val)) */
2015-05-27 13:12:26 -04:00
/* #define PIC_ABORT(pic) abort() */
2014-08-25 00:38:09 -04:00
/** initial memory size (to be dynamically extended if necessary) */
/* #define PIC_ARENA_SIZE 1000 */
/* #define PIC_HEAP_PAGE_SIZE 10000 */
2015-07-16 03:34:59 -04:00
/* #define PIC_PAGE_REQUEST_THRESHOLD(total) ((total) * 77 / 100) */
2014-08-25 00:38:09 -04:00
/* #define PIC_STACK_SIZE 1024 */
/* #define PIC_RESCUE_SIZE 30 */
/* #define PIC_SYM_POOL_SIZE 128 */
/* #define PIC_IREP_SIZE 8 */
/* #define PIC_POOL_SIZE 8 */
2015-01-21 07:59:50 -05:00
/* #define PIC_SYMS_SIZE 32 */
2014-08-25 00:38:09 -04:00
/* #define PIC_ISEQ_SIZE 1024 */