class Spoon::SpawnAttributes::Releaser

Public Class Methods

call(ptr) click to toggle source
# File lib/spoon/unix.rb, line 65
def self.call(ptr)
  LibC.posix_spawnattr_destroy(ptr)
  LibC.free(ptr)
end