class Sys::Filesystem::Structs::Statfs
Constants
- MNAMELEN
FreeBSD 12.0
MNAMELEN
from 88 => 1024.
Private Class Methods
linux64?()
click to toggle source
# File lib/sys/unix/sys/filesystem/structs.rb, line 9 def self.linux64? if RUBY_PLATFORM == 'java' ENV_JAVA['sun.arch.data.model'].to_i == 64 else RbConfig::CONFIG['host_os'] =~ /linux/i && (RbConfig::CONFIG['arch'] =~ /64/ || RbConfig::CONFIG['DEFS'] =~ /64/) end end