mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (set_pioinfo_extra): new function for VC++8 SP1
workaround. [ruby-core:10259] * win32/win32.c (NtInitialize): call above function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ae2370fb50
commit
0dded0986d
2 changed files with 36 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
Fri Feb 23 15:10:46 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (set_pioinfo_extra): new function for VC++8 SP1
|
||||
workaround. [ruby-core:10259]
|
||||
|
||||
* win32/win32.c (NtInitialize): call above function.
|
||||
|
||||
Fri Feb 23 14:19:40 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* signal.c (sighandler): need to tell to be interrupted to main
|
||||
|
|
|
@ -395,7 +395,10 @@ NtInitialize(int *argc, char ***argv)
|
|||
int ret;
|
||||
|
||||
#if _MSC_VER >= 1400
|
||||
static void set_pioinfo_extra(void);
|
||||
|
||||
_set_invalid_parameter_handler(invalid_parameter);
|
||||
set_pioinfo_extra();
|
||||
#endif
|
||||
|
||||
//
|
||||
|
@ -1683,11 +1686,36 @@ EXTERN_C _CRTIMP ioinfo * __pioinfo[];
|
|||
|
||||
#define IOINFO_L2E 5
|
||||
#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
|
||||
#define _pioinfo(i) (__pioinfo[i >> IOINFO_L2E] + (i & (IOINFO_ARRAY_ELTS - 1)))
|
||||
#define _pioinfo(i) ((ioinfo*)((char*)(__pioinfo[i >> IOINFO_L2E]) + (i & (IOINFO_ARRAY_ELTS - 1)) * (sizeof(ioinfo) + pioinfo_extra)))
|
||||
#define _osfhnd(i) (_pioinfo(i)->osfhnd)
|
||||
#define _osfile(i) (_pioinfo(i)->osfile)
|
||||
#define _pipech(i) (_pioinfo(i)->pipech)
|
||||
|
||||
#if _MSC_VER >= 1400
|
||||
static size_t pioinfo_extra = 0; /* workaround for VC++8 SP1 */
|
||||
|
||||
static void
|
||||
set_pioinfo_extra(void)
|
||||
{
|
||||
int fd;
|
||||
|
||||
fd = open("NUL", O_RDONLY);
|
||||
for (pioinfo_extra = 0; pioinfo_extra <= 64; pioinfo_extra += sizeof(void *)) {
|
||||
if (_osfhnd(fd) == _get_osfhandle(fd)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
close(fd);
|
||||
|
||||
if (pioinfo_extra > 64) {
|
||||
/* not found, maybe something wrong... */
|
||||
pioinfo_extra = 0;
|
||||
}
|
||||
}
|
||||
#else
|
||||
#define pioinfo_extra 0
|
||||
#endif
|
||||
|
||||
#define _set_osfhnd(fh, osfh) (void)(_osfhnd(fh) = osfh)
|
||||
#define _set_osflags(fh, flags) (_osfile(fh) = (flags))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue