Packages

Gives the Erlang Runtime System access to POSIX features of the build environment (currently, errno and sigaction.)

Current section

Files

Jump to
posix lib posix impl.ex
Raw

lib/posix/impl.ex

defmodule System.POSIX.Impl do
use Rustler, otp_app: :posix
def errno_probe(_), do: throw :nif_not_loaded
def signal_probe(_), do: throw :nif_not_loaded
def signal_set_controller(_), do: throw :nif_not_loaded
def signal_register(_), do: throw :nif_not_loaded
end