src/os/windows/vm/os_windows.hpp

Print this page
rev 6623 : 8048241: Introduce umbrella header os.inline.hpp and clean up includes
Reviewed-by: coleenp, dholmes, lfoltan

*** 27,36 **** --- 27,41 ---- // Win32_OS defines the interface to windows operating systems // Information about the protection of the page at address '0' on this os. static bool zero_page_read_protected() { return true; } + // File conventions + static const char* file_separator() { return "\\"; } + static const char* line_separator() { return "\r\n"; } + static const char* path_separator() { return ";"; } + class win32 { friend class os; protected: static int _vm_page_size;