os/signals.fz
# This file is part of the Fuzion language implementation.
#
# The Fuzion language implementation is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation, version 3 of the License.
#
# The Fuzion language implementation is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU General Public License along with The
# Fuzion language implementation. If not, see <https://www.gnu.org/licenses/>.
# -----------------------------------------------------------------------
#
# Tokiwa Software GmbH, Germany
#
# Source code of Fuzion standard library feature signals
#
# -----------------------------------------------------------------------
# signals -- unit feature to group signals
#
public signals is
# hangup detected
#
public hangup is
# interrupt
#
public interrupt is
# quit
#
public quit is
# illegal instruction
#
public illegal_instruction is
# trace/breakpoint trap
#
public trap is
# abort
#
public abort is
# arithmetic error (fpe)
#
public arithmetic_error is
# kill
#
public kill is
# invalid memory reference (segv)
#
public invalid_memory_reference is
# broken pipe
#
public broken_pipe is
# alarm, timer signal
#
public alarm is
# terminate (term)
#
public terminate is