This file is indexed.

/usr/lib/ruby/vendor_ruby/childprocess/unix/platform/i386-solaris.rb is in ruby-childprocess 0.5.9-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
module ChildProcess::Unix::Platform
  SIZEOF = {
     :posix_spawn_file_actions_t => 4,
     :posix_spawnattr_t          => 4,
     :sigset_t                   => 16
  }
  POSIX_SPAWN_RESETIDS   = 1
  POSIX_SPAWN_SETPGROUP  = 2
  POSIX_SPAWN_SETSIGDEF  = 4
  POSIX_SPAWN_SETSIGMASK = 8
end