File: arm64-macosx.rb

package info (click to toggle)
ruby-childprocess 4.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: ruby: 2,541; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
module ChildProcess::Unix::Platform
  SIZEOF = {
     :posix_spawn_file_actions_t => 8,
     :posix_spawnattr_t          => 8,
     :sigset_t                   => 4
  }
  POSIX_SPAWN_RESETIDS   = 1
  POSIX_SPAWN_SETPGROUP  = 2
  POSIX_SPAWN_SETSIGDEF  = 4
  POSIX_SPAWN_SETSIGMASK = 8
end