Name
SPVM::Sys::Process::Constant - Sys::Process::Constant is a SPVM module
Usage
use Sys::Process::Constant as Proc;
my $value = Proc->EXIT_FAILURE;
Description
Sys::Process::Constant
is a SPVM module.
Class Methods
EXIT_FAILURE
static method EXIT_FAILURE : int ();
Get the constant value of EXIT_FAILURE
. If the system doesn't define this constant, an exception will be thrown. The error code is set to the class id of the Error::NotSupported class.
EXIT_SUCCESS
static method EXIT_SUCCESS : int ();
Get the constant value of EXIT_SUCCESS
. If the system doesn't define this constant, an exception will be thrown. The error code is set to the class id of the Error::NotSupported class.
WNOHANG
static method WNOHANG : int ();
Get the constant value of WNOHANG
. If the system doesn't define this constant, an exception will be thrown. The error code is set to the class id of the Error::NotSupported class.
WUNTRACED
static method WUNTRACED : int ();
Get the constant value of WUNTRACED
. If the system doesn't define this constant, an exception will be thrown. The error code is set to the class id of the Error::NotSupported class.
WCONTINUED
static method WCONTINUED : int ();
Get the constant value of WCONTINUED
. If the system doesn't define this constant, an exception will be thrown. The error code is set to the class id of the Error::NotSupported class.
Copyright & License
Copyright 2022-2022 Yuki Kimoto, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.