59件ヒット
[1-59件を表示]
(0.012秒)
キーワード
-
copy
_ fds (12) -
find
_ bad _ fds (12) -
intersect
_ fds (12) -
match
_ fds (12) -
rb
_ thread _ select (1) -
rb
_ time _ timespec _ new (10)
検索結果
先頭5件
- static void copy
_ fds(fd _ set *dst , fd _ set *src , int max) - int rb
_ thread _ select(int max , fd _ set *read , fd _ set *write , fd _ set *except , struct timeval *timeout) - static int find
_ bad _ fds(fd _ set *dst , fd _ set *src , int max) - static int intersect
_ fds(fd _ set *src , fd _ set *dst , int max) - static int match
_ fds(fd _ set *dst , fd _ set *src , int max)
-
static void copy
_ fds(fd _ set *dst , fd _ set *src , int max) (117.0) -
fd_set src を dst にコピーします。 max は select(2) の第一引数と同じ意味です。
...fd_set src を dst にコピーします。
max は select(2) の第一引数と同じ意味です。... -
int rb
_ thread _ select(int max , fd _ set *read , fd _ set *write , fd _ set *except , struct timeval *timeout) (101.0) -
この関数は deprecated です。rb_thread_fd_select を使用してください。
この関数は deprecated です。rb_thread_fd_select を使用してください。
Ruby のスレッドは実装のために内部で select(2) を使っているため、
拡張ライブラリ内で独自に select(2) を使った場合の動作は保証されません。
代わりにこの関数 rb_thread_select を使ってください。
引数の意味は select(2) と同じです。 -
static int find
_ bad _ fds(fd _ set *dst , fd _ set *src , int max) (101.0) -
-
static int intersect
_ fds(fd _ set *src , fd _ set *dst , int max) (101.0) -
-
static int match
_ fds(fd _ set *dst , fd _ set *src , int max) (101.0) -
-
VALUE rb
_ time _ timespec _ new(const struct timespec *ts , int offset) (13.0) -
引数 ts、offset を元に Time オブジェクトを作成して返します。
...ffset 協定世界時との時差(秒)。
-86400 < offset < 86400 の場合は指定した時差に、INT_MAX
を指定した場合は地方時、INT_MAX-1 を指定した場合は UTC に
なります。
@raise ArgumentError offset に上述の範囲以外...