The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Name

SPVM::Sys::Process::Constant - Constant Values for Process

Usage

  use Sys::Process::Constant as Proc;
  
  my $value = Proc->EXIT_FAILURE;
  

Description

Sys::Process::Constant provides the methods for the constant values for the process manipulation.

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.

PRIO_PROCESS

  static method PRIO_PROCESS : int ();

Get the constant value of PRIO_PROCESS. 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.

PRIO_PGRP

  static method PRIO_PGRP : int ();

Get the constant value of PRIO_PGRP. 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.

PRIO_USER

  static method PRIO_USER : int ();

Get the constant value of PRIO_USER. 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.