diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-07-18 20:03:34 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-07-18 20:03:34 +0200 |
commit | 3b2ee85b04f8cfabb10b42daf41f91dc95d368eb (patch) | |
tree | 8ae678e325b807da9c3b587a58b6e92c481ea895 /doc/ja | |
parent | 23983b125aa37a87ee439cd9b6f7f417e8b2c079 (diff) | |
download | weechat-3b2ee85b04f8cfabb10b42daf41f91dc95d368eb.zip |
core: fix crash if a file descriptor used in hook_fd() is too high (> 1024 on Linux/BSD) (closes #465)
The calls to select() are replaced by poll(), which doesn't have limitation
on file descriptor number.
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.asciidoc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc index ff5d64ff0..df591c665 100644 --- a/doc/ja/weechat_plugin_api.ja.asciidoc +++ b/doc/ja/weechat_plugin_api.ja.asciidoc @@ -7227,6 +7227,8 @@ hook = weechat.hook_timer(20 * 1000, 0, 0, "my_timer_cb", "") ==== hook_fd +_バージョン 1.3 で更新。_ + ファイルディスクリプタ (ファイルやソケット) をフック。 プロトタイプ: @@ -7247,7 +7249,9 @@ struct t_hook *weechat_hook_fd (int fd, * 'fd': ファイルディスクリプタ * 'flag_read': 1 = 読み込みイベントをキャッチ、0 = 無視 * 'flag_write': 1 = 書き込みイベントをキャッチ、0 = 無視 +// TRANSLATION MISSING * 'flag_exception': 1 = 例外イベントをキャッチ、0 = 無視 + (_WeeChat ≥ 1.3_: this argument is ignored and not used any more) * 'callback': ファイル (またはソケット) に対してキャッチしたいイベントが発生した場合に実行する関数、 引数と戻り値: ** 'void *data': ポインタ |