2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
5 #ifndef SIGNAL_DISPOSITION_TYPES_H
6 #define SIGNAL_DISPOSITION_TYPES_H
9 enum SignalDisposition
{
10 SIGNAL_DISPOSITION_IGNORE
= 0,
11 SIGNAL_DISPOSITION_STOP_AT_RECEIPT
,
12 SIGNAL_DISPOSITION_STOP_AT_SIGNAL_HANDLER
,
13 // NB: if the team has no signal handler installed for
14 // the corresponding signal, this implies stop at receipt.
16 SIGNAL_DISPOSITION_MAX
20 #endif // SIGNAL_DISPOSITION_TYPES_H