aboutsummaryrefslogtreecommitdiff
path: root/src/sman
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2014-08-16 20:53:01 +0000
committerdos-reis <gdr@axiomatics.org>2014-08-16 20:53:01 +0000
commitef207db542d63e4b04db5cac88bed6f6cfcc514b (patch)
tree159e60bc674fcedfc567d11f2031665698df86a0 /src/sman
parentd5f760638a920d3e3fb70ef3e571645a5f3a8344 (diff)
downloadopen-axiom-ef207db542d63e4b04db5cac88bed6f6cfcc514b.tar.gz
Avoid SBCL deprecated features.
Diffstat (limited to 'src/sman')
-rw-r--r--src/sman/sman.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/sman/sman.c b/src/sman/sman.c
index c8c357f2..ac941266 100644
--- a/src/sman/sman.c
+++ b/src/sman/sman.c
@@ -1,7 +1,7 @@
/*
Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
All rights reserved.
- Copyright (C) 2007-2013, Gabriel Dos Reis.
+ Copyright (C) 2007-2014, Gabriel Dos Reis.
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -86,7 +86,6 @@ static void read_from_manager(int);
static void manage_spad_io(int);
static SpadProcess* find_child(int);
static void kill_all_children(void);
-static void clean_up_terminal(void);
static void monitor_children(void);
/* System defined pointer to array or environment variables. */
@@ -638,7 +637,7 @@ read_from_manager(int ptcNum)
static void
manage_spad_io(int ptcNum)
{
- int ret_code, i, p;
+ int ret_code, p;
fd_set rd;
while (1) {
rd = socket_mask;
@@ -709,12 +708,6 @@ kill_all_children(void)
}
static void
-clean_up_terminal(void)
-{
- tcsetattr(0, TCSAFLUSH, &oldbuf);
-}
-
-static void
monitor_children(void)
{
int dead_baby, stat;