зеркало из https://github.com/github/ruby.git
* include/ruby/missing.h: add prototype for ruby_close().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
d5a1efdc61
Коммит
24b17a2e87
|
@ -1,3 +1,7 @@
|
|||
Thu Jul 22 14:30:17 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* include/ruby/missing.h: add prototype for ruby_close().
|
||||
|
||||
Thu Jul 22 12:58:12 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (RUBY_EXTERN): ignore invalid attribute.
|
||||
|
|
|
@ -173,6 +173,15 @@ RUBY_EXTERN int signbit(double x);
|
|||
RUBY_EXTERN int ffs(int);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_CLOSE
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
RUBY_EXTERN int ruby_getpeername(int, struct sockaddr *, socklen_t *);
|
||||
RUBY_EXTERN int ruby_getsockname(int, struct sockaddr *, socklen_t *);
|
||||
RUBY_EXTERN int ruby_shutdown(int, int);
|
||||
RUBY_EXTERN int ruby_close(int);
|
||||
#endif
|
||||
|
||||
#if defined __GNUC__ && __GNUC__ >= 4
|
||||
#pragma GCC visibility pop
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче