Displaying 2 results from an estimated 2 matches for "runix".
Did you mean:
unix
2001 May 16
1
Double inclusion of Runix.h
Maybe I am overlooking something important, but why is Runix.h included twice
in sys-std.c?
....
#include "Runix.h"
#include "Startup.h"
#include "Runix.h"
....
In Runix.h, there is another iclusion of Startup.h ...
Was this an omission during clean up?
Curious,
Thomas Hoffmann.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2003 Aug 24
1
declarations in non-exported headers and embedding R
...up Actions */
typedef enum {
SA_NORESTORE,/* = 0 */
SA_RESTORE,
SA_DEFAULT,/* was === SA_RESTORE */
SA_NOSAVE,
SA_SAVE,
SA_SAVEASK,
SA_SUICIDE
} SA_TYPE;
-------------------------------------------------------------
from non-exported header file ${R_HOME}/src/unix/Runix.h
-------------------------------------------------------------
extern void Rstd_CleanUp(SA_TYPE saveact, int status, int runLast);
Use:
-------------
When the PostgreSQL backend process exits, Rstd_CleanUp() is called via
registered onexit callback so that the embedded R interpreter can clean
u...