src/os/windows/vm/os_windows.inline.hpp

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


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
  26 #define OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
  27 
  28 #include "runtime/atomic.inline.hpp"
  29 #include "runtime/orderAccess.inline.hpp"
  30 #include "runtime/os.hpp"
  31 
  32 inline const char* os::file_separator()                { return "\\"; }
  33 inline const char* os::line_separator()                { return "\r\n"; }
  34 inline const char* os::path_separator()                { return ";"; }
  35 inline const char* os::dll_file_extension()            { return ".dll"; }
  36 
  37 inline const int os::default_file_open_flags() { return O_BINARY | O_NOINHERIT;}
  38 
  39 // File names are case-insensitive on windows only
  40 inline int os::file_name_strcmp(const char* s, const char* t) {
  41   return _stricmp(s, t);
  42 }
  43 
  44 inline void  os::dll_unload(void *lib) {
  45   ::FreeLibrary((HMODULE)lib);
  46 }
  47 
  48 inline void* os::dll_lookup(void *lib, const char *name) {
  49   return (void*)::GetProcAddress((HMODULE)lib, name);
  50 }
  51 
  52 inline bool os::obsolete_option(const JavaVMOption *option) {
  53   return false;
  54 }




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
  26 #define OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
  27 


  28 #include "runtime/os.hpp"
  29 



  30 inline const char* os::dll_file_extension()            { return ".dll"; }
  31 
  32 inline const int os::default_file_open_flags() { return O_BINARY | O_NOINHERIT;}
  33 
  34 // File names are case-insensitive on windows only
  35 inline int os::file_name_strcmp(const char* s, const char* t) {
  36   return _stricmp(s, t);
  37 }
  38 
  39 inline void  os::dll_unload(void *lib) {
  40   ::FreeLibrary((HMODULE)lib);
  41 }
  42 
  43 inline void* os::dll_lookup(void *lib, const char *name) {
  44   return (void*)::GetProcAddress((HMODULE)lib, name);
  45 }
  46 
  47 inline bool os::obsolete_option(const JavaVMOption *option) {
  48   return false;
  49 }