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

org.qbicc.interpreter.Signal Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.interpreter;

/**
 * The set of possible signals that can be sent to a hosted VM.  This is a subset of the set of signals
 * typically available to "real" operating systems.
 */
public enum Signal {
    INT(2),
    QUIT(3),
    KILL(9),
    TERM(15),
    ;
    private final int number;

    Signal(final int number) {
        this.number = number;
    }

    public int getNumber() {
        return number;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy