All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.constants.platform.linux.Signal Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Tue Feb 24 09:44:03 +1000 2009
package jnr.constants.platform.linux;
public enum Signal implements jnr.constants.Constant {
SIGHUP(1),
SIGINT(2),
SIGQUIT(3),
SIGILL(4),
SIGTRAP(5),
SIGABRT(6),
SIGIOT(6),
SIGBUS(7),
SIGFPE(8),
SIGKILL(9),
SIGUSR1(10),
SIGSEGV(11),
SIGUSR2(12),
SIGPIPE(13),
SIGALRM(14),
SIGTERM(15),
SIGSTKFLT(16),
SIGCLD(17),
SIGCHLD(17),
SIGCONT(18),
SIGSTOP(19),
SIGTSTP(20),
SIGTTIN(21),
SIGTTOU(22),
SIGURG(23),
SIGXCPU(24),
SIGXFSZ(25),
SIGVTALRM(26),
SIGPROF(27),
SIGWINCH(28),
SIGPOLL(29),
SIGIO(29),
SIGPWR(30),
SIGSYS(31),
SIGUNUSED(31),
SIGRTMIN(34),
SIGRTMAX(64),
NSIG(65);
private final int value;
private Signal(int value) { this.value = value; }
public static final long MIN_VALUE = 1;
public static final long MAX_VALUE = 65;

public final int value() { return value; }
public final int intValue() { return value; }
public final long longValue() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy