Skip to content

Instantly share code, notes, and snippets.

@mattn
Created February 24, 2009 11:29
Show Gist options
  • Save mattn/69523 to your computer and use it in GitHub Desktop.
Save mattn/69523 to your computer and use it in GitHub Desktop.
--- IO.xs.orig 2006-03-26 11:27:13.000000000 +0900
+++ IO.xs 2009-02-24 20:16:34.921875000 +0900
@@ -121,7 +121,12 @@
}
return RETVAL;
#else
+# ifdef WIN32
+ unsigned long flags = block;
+ return ioctl(PerlIO_fileno(f), FIONBIO, &flags);
+# else
return -1;
+# endif
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment