Skip to content

Commit

Permalink
* thread.c: add a description for the behavior of select(2) on
Browse files Browse the repository at this point in the history
  Mac OS X 10.7 (Lion).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
mrkn committed Aug 19, 2011
1 parent 61f830b commit 248d589
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Fri Aug 19 13:14:00 2011 Kenta Murata <mrkn@mrkn.jp>

* thread.c: add a description for the behavior of select(2) on
Mac OS X 10.7 (Lion).

Fri Aug 19 11:28:58 2011 Shugo Maeda <shugo@ruby-lang.org>

* lib/net/imap.rb (msg_att): accepts extra space before ')'.
Expand Down
4 changes: 4 additions & 0 deletions thread.c
Expand Up @@ -2296,6 +2296,10 @@ rb_thread_priority_set(VALUE thread, VALUE prio)
* - HP-UX documents how to allocate fd_set dynamically.
* http://docs.hp.com/en/B2355-60105/select.2.html
* - Solaris 8 has select_large_fdset
* - Mac OS X 10.7 (Lion)
* select(2) returns EINVAL if nfds is greater than FD_SET_SIZE and
* _DARWIN_UNLIMITED_SELECT (or _DARWIN_C_SOURCE) isn't defined.
* http://developer.apple.com/library/mac/#releasenotes/Darwin/SymbolVariantsRelNotes/_index.html
*
* When fd_set is not big enough to hold big file descriptors,
* it should be allocated dynamically.
Expand Down

0 comments on commit 248d589

Please sign in to comment.