Merge branch 'win64' into gnu

Conflicts:

	makefile
	src/compile-x86.S
	src/x86.S
	src/x86.cpp
This commit is contained in:
Joel Dice
2009-07-25 20:48:36 -06:00
14 changed files with 923 additions and 505 deletions

View File

@ -81,7 +81,7 @@ namespace {
int descriptor(JNIEnv* e, HANDLE h)
{
int fd = _open_osfhandle(reinterpret_cast<long>(h), 0);
int fd = _open_osfhandle(reinterpret_cast<intptr_t>(h), 0);
if (fd == -1) {
throwNew(e, "java/io/IOException", strerror(errno));
}