Sha256: 900e1625c26ccb6ee17bc154be209cf66d0f9a60b2f0732b39ed701abd0a09ba
Contents?: true
Size: 1.78 KB
Versions: 1
Compression:
Stored size: 1.78 KB
Contents
[![Ruby](https://github.com/djberg96/proc-wait3/actions/workflows/ruby.yml/badge.svg)](https://github.com/djberg96/proc-wait3/actions/workflows/ruby.yml) ## Description Adds the wait3, wait4, waitid, pause, sigsend, and getrusage methods to the Process module. ## Installation `gem install proc-wait3` ## Synopsis ```ruby require 'proc/wait3' pid = fork{ sleep 1 exit 2 } puts Time.now.to_s Process.wait3 puts $?.exitstatus # => 2 ``` ## Tested Platforms * Solaris * Linux * FreeBSD * OS X ## Warnings Linux users who compile with gcc -Wall will notice a few warnings. These are harmless (and unavoidable atm). Linux users may also notice warnings about implicit declarations. These are also harmless, and can be silenced by installing the libbsd-dev package first. These methods may fail in conjunction with `fork` with `Errno::EINTR` unless you pass the WNOHANG flag, or explicitly ignore the `SIGCHLD` signal. Ruby's own `wait` methods appear to essentially be doing that behind the scenes. ## Integration with Ruby's process.c I considered simply providing a patch to the core process.c file, but I decided against it for two reasons. First, I wanted to get something out more quickly rather than waiting for approval from the core developers who, based on an earlier post, seem somewhat gun-shy about integrating support for wait3() and wait4() based, I think, on portability concerns. Second, and more importantly, I don't like the cProcStatus class. The extra inspection code seems like an awful lot of work for very little gain. The overloaded methods are also overkill, and do nothing but save me the trouble of typing the word "status", since all they're for is comparing or operating on the status attribute. ## Additional Documentation Please see the doc/wait3.md file for detailed documentation.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
proc-wait3-1.9.1 | README.md |