Commit b32d2321 by Adam Megacz Committed by Adam Megacz

win32.h: Added _Jv_platform_gettimeofday.

2002-02-11  Adam Megacz <adam@xwt.org>

        * include/win32.h: Added _Jv_platform_gettimeofday.
        * win32.cc (_Jv_platform_gettimeofday): Added dummy function.

From-SVN: r49693
parent 30529b03
2002-02-11 Adam Megacz <adam@xwt.org>
* include/win32.h: Added _Jv_platform_gettimeofday.
* win32.cc (_Jv_platform_gettimeofday): Added dummy function.
2002-02-11 Adam Megacz <adam@xwt.org>
* java/io/natFileWin32.cc, java/io/natFileDescriptorWin32.cc:
Added #undef STRICT to make windows.h and
java/lang/reflect/Modifier.h cooperate.
......
......@@ -18,5 +18,6 @@ details. */
#include <winsock.h>
extern void _Jv_platform_initialize (void);
extern void _Jv_platform_gettimeofday (struct timeval *);
#endif /* __JV_WIN32_H__ */
......@@ -35,3 +35,12 @@ _Jv_platform_initialize (void)
// Install exception handler
SetUnhandledExceptionFilter (win32_exception_handler);
}
// gettimeofday implementation.
void
_Jv_platform_gettimeofday (struct timeval *tv)
{
// FIXME
return;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment