Sha256: e50665940013ccb56f10aaec7b6906c47a410c9bcf7d6c7596f098758e09fcc8
Contents?: true
Size: 252 Bytes
Versions: 20
Compression:
Stored size: 252 Bytes
Contents
module Process # check if the pid's process is running. # # @note for linux only # @param [String, Integer] pid process id # @return [Boolean] def self.exists?(pid) raise NotImplementError unless linux? File.exists?("/proc/#{pid}") end end
Version data entries
20 entries across 20 versions & 1 rubygems