Add sys.exitfunc feature. Make askync non-static.
This commit is contained in:
parent
da8cd8638f
commit
59bff399a0
|
@ -369,6 +369,25 @@ void
|
||||||
goaway(sts)
|
goaway(sts)
|
||||||
int sts;
|
int sts;
|
||||||
{
|
{
|
||||||
|
object *exitfunc = sysget("exitfunc");
|
||||||
|
|
||||||
|
if (exitfunc) {
|
||||||
|
object *arg;
|
||||||
|
object *res;
|
||||||
|
sysset("exitfunc", (object *)NULL);
|
||||||
|
arg = newtupleobject(0);
|
||||||
|
if (arg == NULL)
|
||||||
|
res = NULL;
|
||||||
|
else {
|
||||||
|
res = call_object(exitfunc, arg);
|
||||||
|
DECREF(arg);
|
||||||
|
}
|
||||||
|
if (res == NULL) {
|
||||||
|
fprintf(stderr, "Error in sys.exitfunc:\n");
|
||||||
|
print_error();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
flushline();
|
flushline();
|
||||||
|
|
||||||
#ifdef USE_THREAD
|
#ifdef USE_THREAD
|
||||||
|
@ -411,7 +430,7 @@ goaway(sts)
|
||||||
#ifdef TRACE_REFS
|
#ifdef TRACE_REFS
|
||||||
/* Ask a yes/no question */
|
/* Ask a yes/no question */
|
||||||
|
|
||||||
static int
|
int
|
||||||
askyesno(prompt)
|
askyesno(prompt)
|
||||||
char *prompt;
|
char *prompt;
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue