ruby-posix-spawn 0.3.6-1 source package in Ubuntu

Changelog

ruby-posix-spawn (0.3.6-1) unstable; urgency=low


  * Initial release (Closes: #672507)

 -- Youhei SASAKI <email address hidden>  Sat, 12 May 2012 03:40:37 +0900

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
any
Section:
ruby
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ruby-posix-spawn_0.3.6-1.dsc 1.4 KiB a5b9619f3a05a606a7e21d8c62361c5630fadd513ba4286b5cf6c2a6c6c79ec0
ruby-posix-spawn_0.3.6.orig.tar.gz 23.0 KiB da98e4dccd3b8314eda3bfec7d0cf9e137327d8d962fe0326745b06e5d5943ea
ruby-posix-spawn_0.3.6-1.debian.tar.gz 2.8 KiB ef3cc03aabc3efdad50fe3489143f665327bb64caded853864d26ffa59db7e82

No changes file available.

Binary packages built by this source

ruby-posix-spawn: Ruby Implementation of posix_spawn(2) for faster process spawning

 The posix-spawn library aims to implement a subset of the Ruby 1.9
 `Process::spawn` interface in a way that takes advantage of fast
 process spawning interfaces when available and provides sane fallbacks
 on systems that do not.
 .
 `fork(2)` calls slow down as the parent process uses more memory due to
 the need to copy page tables. In many common uses of fork(), where it
 is followed by one of the exec family of functions to spawn child
 processes (`Kernel#system`,`IO::popen`, `Process::spawn`, etc.), it's
 possible to remove this overhead by using the use of special process
 spawning interfaces (`posix_spawn()`, `vfork()`, etc.)