diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-04-14 19:53:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-04-14 19:53:05 +0000 |
commit | b17465183fdfbf151cbde65486107b1ee60373f1 (patch) | |
tree | fdc792bd07c9dd1e5c2009bbee405f4a97d9ac69 /usr.bin/systat/extern.h | |
parent | b3e13c2b6bbb87d5ac4400de71f11668d50329d3 (diff) |
wakeup after ^Z did not continue redraws and such. use own ^Z handler.
ok otto millert
Diffstat (limited to 'usr.bin/systat/extern.h')
-rw-r--r-- | usr.bin/systat/extern.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/systat/extern.h b/usr.bin/systat/extern.h index 5965752ccb5..8eabff91f78 100644 --- a/usr.bin/systat/extern.h +++ b/usr.bin/systat/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.11 2003/06/03 02:56:17 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.12 2004/04/14 19:53:04 deraadt Exp $ */ /* $NetBSD: extern.h,v 1.3 1996/05/10 23:16:34 thorpej Exp $ */ /*- @@ -72,6 +72,7 @@ int cmdnetstat(char *, char *); struct cmdtab *lookup(char *); void command(char *); void sigdie(int); +void sigtstp(int); void die(void); void sigdisplay(int); void display(void); @@ -117,12 +118,12 @@ void shownetstat(void); void showpigs(void); void showswap(void); void status(void); -void suspend(int); void gethz(void); extern volatile sig_atomic_t gotdie; extern volatile sig_atomic_t gotdisplay; extern volatile sig_atomic_t gotwinch; +extern volatile sig_atomic_t gottstp; extern double dellave; extern WINDOW *wload; |