37件ヒット
[1-37件を表示]
(0.012秒)
キーワード
-
rb
_ attr (12) -
rb
_ define _ attr (12) -
rb
_ mod _ attr _ writer (12) -
rb
_ thread _ select (1)
検索結果
先頭4件
- static VALUE rb
_ mod _ attr _ writer(int argc , VALUE *argv , VALUE klass) - void rb
_ define _ attr(VALUE klass , const char *name , int read , int write) - int rb
_ thread _ select(int max , fd _ set *read , fd _ set *write , fd _ set *except , struct timeval *timeout) - void rb
_ attr(VALUE klass , ID id , int read , int write , int ex)
-
static VALUE rb
_ mod _ attr _ writer(int argc , VALUE *argv , VALUE klass) (6101.0) -
-
void rb
_ define _ attr(VALUE klass , const char *name , int read , int write) (117.0) -
クラス klass にメソッド name と name= を定義します。 read が真のときは name を定義し、 write が真のときは name= を定義します。
...クラス klass にメソッド name と name= を定義します。
read が真のときは name を定義し、
write が真のときは name= を定義します。... -
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) と同じです。 -
void rb
_ attr(VALUE klass , ID id , int read , int write , int ex) (101.0) -