るりまサーチ

最速Rubyリファレンスマニュアル検索!
108件ヒット [101-108件を表示] (0.012秒)
トップページ > クエリ:syswrite[x]

別のキーワード

  1. stringio syswrite
  2. io syswrite
  3. openssl syswrite
  4. _builtin syswrite
  5. sslsocket syswrite

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < 1 2 >>

fcntl (6.0)

ファイルディスクリプタを扱う Unix のシステムコール IO#fcntl (つまり fcntl(2)) で使用できる定数を集めたモジュールです。

...:
require "fcntl"
m = s.fcntl(Fcntl::F_GETFL, 0)
f.fcntl(Fcntl::F_SETFL, Fcntl::O_NONBLOCK|m)

require 'fcntl'

fd = IO::sysopen('/tmp/tempfile',
Fcntl::O_WRONLY | Fcntl::O_EXCL | Fcntl::O_CREAT)
f = IO.open(fd)
f.syswrite("TEMP DATA")

f.close...
<< < 1 2 >>