Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
fcntl
`fcntl(FILEHANDLE,FUNCTION,SCALAR)'
ioctl(2)
関数をインプリメントする。正しく関数を定義するにはおそらく
require "fcntl.ph"; # たぶん /usr/local/lib/perl/fcntl.ph
を最初に行う必要があるだろう。
`fcntl.ph'
がなかったり正しく定義されていなければ、
`<sys/fcntl.h>'
などに基づいて自分で定義する必要がある。 (perl キットにはこの作業を助けるための
`h2ph'
という perl スクリプトがある。) 引数の処理や返り値は
ioctl
と全く同じである。 注意:
fcntl(2)
をインプリメントしていないマシンで使用すると 致命的エラーとなる。
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.