Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:
note description: "[ Constants used for signal handling. This class may be used as ancestor by classes needing its facilities. ]" library: "Free implementation of ELKS library" status: "See notice at end of class." legal: "See notice at end of class." date: "$Date: 2012-05-23 21:13:10 -0700 (Wed, 23 May 2012) $" revision: "$Revision: 91981 $" class interface UNIX_SIGNALS create default_create feature -- Access meaning (sig: INTEGER_32): detachable STRING_8 -- A message in English describing what `sig' is is_defined (sig: INTEGER_32): BOOLEAN -- Is `sig' a signal defined for this platform? is_ignored (sig: INTEGER_32): BOOLEAN -- Is `sig' currently set to be ignored? Sighup: INTEGER_32 -- Code for ``Hangup'' signal Sigint: INTEGER_32 -- Code for ``Interrupt'' signal Sigquit: INTEGER_32 -- Code for ``Quit'' signal Sigill: INTEGER_32 -- Code for ``Illegal instruction'' signal Sigtrap: INTEGER_32 -- Code for ``Trace trap'' signal Sigabrt: INTEGER_32 -- Code for ``Abort'' signal Sigiot: INTEGER_32 -- Code for ``IOT instruction'' signal Sigemt: INTEGER_32 -- Code for ``EMT instruction'' signal Sigfpe: INTEGER_32 -- Code for ``Floating point exception'' signal Sigkill: INTEGER_32 -- Code for ``Terminator'' signal Sigbus: INTEGER_32 -- Code for ``Bus error'' signal Sigsegv: INTEGER_32 -- Code for ``Segmentation violation'' signal Sigsys: INTEGER_32 -- Code for ``Bad argument to system call'' signal Sigpipe: INTEGER_32 -- Code for ``Broken pipe'' signal Sigalrm: INTEGER_32 -- Code for ``Alarm clock'' signal Sigterm: INTEGER_32 -- Code for ``Software termination'' signal Sigusr1: INTEGER_32 -- Code for ``User-defined signal #1'' Sigusr2: INTEGER_32 -- Code for ``User-defined signal #2'' Sigchld: INTEGER_32 -- Code for ``Death of a child'' signal. -- Signal ignored by default Sigcld: INTEGER_32 -- Code for ``Death of a child'' signal. -- Signal ignored by default Sigio: INTEGER_32 -- Code for ``Pending I/O on a descriptor'' signal. -- Signal ignored by default Sigpoll: INTEGER_32 -- Code for ``Selectable event pending'' signal Sigttin: INTEGER_32 -- Code for ``Tty input from background'' signal. -- Signal ignored by default Sigttou: INTEGER_32 -- Code for ``Tty output from background'' signal. -- Signal ignored by default Sigstop: INTEGER_32 -- Code for ``Stop'' signal Sigtstp: INTEGER_32 -- Code for ``Stop from tty'' signal Sigxcpu: INTEGER_32 -- Code for ``Cpu time limit exceeded'' signal Sigxfsz: INTEGER_32 -- Code for ``File size limit exceeded'' signal Sigvtalarm: INTEGER_32 -- Code for ``Virtual time alarm'' signal Sigpwr: INTEGER_32 -- Code for ``Power-fail'' signal Sigprof: INTEGER_32 -- Code for ``Profiling timer alarm'' signal Sigwinch: INTEGER_32 -- Code for ``Window size changed'' signal. -- Signal ignored by default Sigwind: INTEGER_32 -- Code for ``Window change'' signal Sigphone: INTEGER_32 -- Code for ``Line status change'' signal Siglost: INTEGER_32 -- Code for ``Resource lost'' signal Sigurg: INTEGER_32 -- Code for ``Urgent condition on socket'' signal. -- Signal ignored by default Sigcont: INTEGER_32 -- Code for ``Continue after stop'' signal. -- Signal ignored by default feature -- Status report signal: INTEGER_32 -- Code of last signal feature -- Status setting catch (sig: INTEGER_32) -- Make sure that future occurrences of `sig' -- will be treated as exceptions. -- (This is the default for all signals.) -- No effect if signal not defined. ignore (sig: INTEGER_32) -- Make sure that future occurrences of `sig' -- will be ignored. (This is not the default.) -- No effect if signal not defined. reset_all_default -- Make sure that all exceptions will lead to their -- default handling. reset_default (sig: INTEGER_32) -- Make sure that exception of code code will lead -- to its default action. require is_defined (sig) note copyright: "Copyright (c) 1984-2012, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class UNIX_SIGNALS
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:

-- Generated by ISE Eiffel --
For more details: www.eiffel.com