mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/intern.h (rb_w32_fdcopy): add prototype. fixes
#4640 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0a1e7d1568
commit
88559ce46e
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue May 3 03:57:04 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/intern.h (rb_w32_fdcopy): add prototype. fixes
|
||||
#4640
|
||||
|
||||
Mon May 2 01:02:04 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* lib/fileutils.rb (FileUtils#chmod): accept symbolic mode argument.
|
||||
|
|
|
@ -270,6 +270,7 @@ void rb_fd_set(int, rb_fdset_t *);
|
|||
#define rb_fd_clr(n, f) rb_w32_fdclr((n), (f)->fdset)
|
||||
#define rb_fd_isset(n, f) rb_w32_fdisset((n), (f)->fdset)
|
||||
#define rb_fd_copy(d, s) rb_w32_fdcopy((d), (s))
|
||||
void rb_w32_fdcopy(rb_fdset_t *dst, const rb_fdset_t *src);
|
||||
#define rb_fd_select(n, rfds, wfds, efds, timeout) rb_w32_select((n), (rfds) ? ((rb_fdset_t*)(rfds))->fdset : NULL, (wfds) ? ((rb_fdset_t*)(wfds))->fdset : NULL, (efds) ? ((rb_fdset_t*)(efds))->fdset: NULL, (timeout))
|
||||
#define rb_fd_resize(n, f) ((void)(f))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue