diff options
author | Nobutomo Nakano <Nobutomo.Nakano@Sun.COM> | 2009-04-07 10:55:10 -0700 |
---|---|---|
committer | Nobutomo Nakano <Nobutomo.Nakano@Sun.COM> | 2009-04-07 10:55:10 -0700 |
commit | b77c815b748d4c5da996e5a2b1ae900c714628b8 (patch) | |
tree | a55999af965b89f709f12f3cfba2145c058fea28 /usr/src/cmd/ttymon/tmextern.h | |
parent | cf04dda189f8e7f1d3245be8e387757e07c78e66 (diff) | |
download | illumos-joyent-b77c815b748d4c5da996e5a2b1ae900c714628b8.tar.gz |
6809252 ttymon should disable SIGQUIT
Diffstat (limited to 'usr/src/cmd/ttymon/tmextern.h')
-rw-r--r-- | usr/src/cmd/ttymon/tmextern.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr/src/cmd/ttymon/tmextern.h b/usr/src/cmd/ttymon/tmextern.h index 5ecf0c4e4c..cffc044641 100644 --- a/usr/src/cmd/ttymon/tmextern.h +++ b/usr/src/cmd/ttymon/tmextern.h @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -31,8 +30,6 @@ #ifndef __TMEXTERN_H #define __TMEXTERN_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif @@ -154,6 +151,7 @@ extern "C" { extern struct sigaction Sigcld; /* SIGCLD */ extern struct sigaction Sigint; /* SIGINT */ extern struct sigaction Sigpoll; /* SIGPOLL */ + extern struct sigaction Sigquit; /* SIGQUIT */ extern struct sigaction Sigterm; /* SIGTERM */ #ifdef DEBUG extern struct sigaction Sigusr1; /* SIGUSR1 */ |