Changeset 127
- Timestamp:
- Sep 1, 2010, 6:32:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/os/windows/vm/os_windows.cpp
r113 r127 3298 3298 3299 3299 void os::win32::setmode_streams() { 3300 // On OS/2, the console requires "\r\n" to start a new line so avoid setting 3301 // O_BINARY there. Let's assume this does not break anything in Java for now. 3302 #ifndef __WIN32OS2__ 3300 3303 _setmode(_fileno(stdin), _O_BINARY); 3301 3304 _setmode(_fileno(stdout), _O_BINARY); 3302 3305 _setmode(_fileno(stderr), _O_BINARY); 3306 #endif 3303 3307 } 3304 3308
Note:
See TracChangeset
for help on using the changeset viewer.