mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
588 B
29 lines
588 B
8 years ago
|
/*===
|
||
|
my_func
|
||
|
fatal error: my reason
|
||
|
===*/
|
||
|
|
||
|
void my_fatal_handler(void *udata, const char *msg) {
|
||
|
(void) udata;
|
||
|
|
||
|
printf("fatal error: %s\n", msg);
|
||
|
|
||
|
/* A fatal error handler must not return, so exit here */
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
static duk_ret_t my_func(duk_context *ctx, void *udata) {
|
||
|
(void) udata;
|
||
|
|
||
|
printf("my_func\n");
|
||
|
return duk_fatal(ctx, "my reason");
|
||
|
}
|
||
|
|
||
|
void test(duk_context *ctx) {
|
||
|
duk_context *new_ctx;
|
||
|
|
||
|
new_ctx = duk_create_heap(NULL, NULL, NULL, NULL, my_fatal_handler);
|
||
|
duk_safe_call(new_ctx, my_func, NULL, 0, 1);
|
||
|
printf("duk_safe_call() returned, should not happen\n");
|
||
|
}
|