Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "duk_internal.h"
Go to the source code of this file.
Functions | |
DUK_INTERNAL duk_bool_t | duk_hthread_init_stacks (duk_heap *heap, duk_hthread *thr) |
DUK_INTERNAL void * | duk_hthread_get_valstack_ptr (duk_heap *heap, void *ud) |
DUK_INTERNAL void * | duk_hthread_get_callstack_ptr (duk_heap *heap, void *ud) |
DUK_INTERNAL void * | duk_hthread_get_catchstack_ptr (duk_heap *heap, void *ud) |
DUK_INTERNAL void * duk_hthread_get_callstack_ptr | ( | duk_heap * | heap, |
void * | ud ) |
Definition at line 85 of file duktape-1.5.2/src-separate/duk_hthread_alloc.c.
References duk_hthread::callstack, and DUK_UNREF.
DUK_INTERNAL void * duk_hthread_get_catchstack_ptr | ( | duk_heap * | heap, |
void * | ud ) |
Definition at line 91 of file duktape-1.5.2/src-separate/duk_hthread_alloc.c.
References duk_hthread::catchstack, and DUK_UNREF.
DUK_INTERNAL void * duk_hthread_get_valstack_ptr | ( | duk_heap * | heap, |
void * | ud ) |
Definition at line 79 of file duktape-1.5.2/src-separate/duk_hthread_alloc.c.
References DUK_UNREF, and duk_hthread::valstack.
DUK_INTERNAL duk_bool_t duk_hthread_init_stacks | ( | duk_heap * | heap, |
duk_hthread * | thr ) |
Definition at line 13 of file duktape-1.5.2/src-separate/duk_hthread_alloc.c.
References duk_hthread::callstack, duk_hthread::callstack_size, duk_hthread::callstack_top, duk_hthread::catchstack, duk_hthread::catchstack_size, duk_hthread::catchstack_top, DUK_ALLOC, DUK_ASSERT, DUK_CALLSTACK_INITIAL_SIZE, DUK_CATCHSTACK_INITIAL_SIZE, DUK_FREE, DUK_MEMZERO, DUK_TVAL_SET_UNDEFINED, DUK_VALSTACK_INITIAL_SIZE, NULL, duk_hthread::valstack, duk_hthread::valstack_bottom, duk_hthread::valstack_end, duk_hthread::valstack_size, and duk_hthread::valstack_top.