ruby-posix-spawn 0.3.13-1ubuntu1 source package in Ubuntu

Changelog

ruby-posix-spawn (0.3.13-1ubuntu1) bionic; urgency=medium

  * Fix build on 32bit architectures, taken from upstream.

 -- Matthias Klose <email address hidden>  Sat, 10 Feb 2018 12:51:47 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Bionic
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
any
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ruby-posix-spawn_0.3.13.orig.tar.gz 24.0 KiB ae216bbd1f915c63fb1a00bbe483d0c343e5b822f305fcd0c958bc0c03782321
ruby-posix-spawn_0.3.13-1ubuntu1.debian.tar.xz 3.9 KiB 5c3ae933a3e85414e0b318c0560a50d0c620024297e0904d68e3639829e4e996
ruby-posix-spawn_0.3.13-1ubuntu1.dsc 2.1 KiB 4eb906dc2eae60dfa5aa14b192f78eca297105a44e3a04f3d46b1ea2de41b207

View changes file

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.)

ruby-posix-spawn-dbgsym: debug symbols for ruby-posix-spawn