Skip to content
Prev 21754 / 63435 Next

stop R mainloop without calling exit(1)

Thomas Kelder wrote:
[...]
Try this in your code. It turns off stack checking altogether:

     #ifdef CSTACK_DEFNS
     /* Don't do any stack checking */
     R_CStackLimit = -1;
     #endif
     Rf_initEmbeddedR(R_argc, R_argv);


Jeff