るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.043秒)

別のキーワード

  1. _builtin errno
  2. systemcallerror errno
  3. exxx errno
  4. new errno::exxx
  5. send errno::exxx

クラス

モジュール

キーワード

検索結果

Etc.#sysconf(name) -> Integer | nil (115.0)

sysconf(3) で取得したシステム設定変数の値を返します。

...返し、errno が設定されていない
場合)

@param name Etc モジュールの SC_ で始まる定数のいずれかを指定します。

//emlist[][ruby]{
require "etc"
Etc
.sysconf(Etc::SC_ARG_MAX) # => 2097152

# Number of processors.
# It is not standardized.
Etc
.sysconf(Etc::SC_NPROCESS...

IO#pathconf(name) -> Integer | nil (115.0)

fpathconf(3) で取得したファイルの設定変数の値を返します。

...場合は nil
を返します。(fpathconf(3) が -1 を返し、errno が設定されていない
場合)

@param name Etc モジュールの PC_ で始まる定数のいずれかを指定します。

//emlist[][ruby]{
require 'etc'
IO.pipe {|r, w|
p w.pathconf(Etc::PC_PIPE_BUF) # => 4096
}
//}...