Changeset 113
- Timestamp:
- Aug 24, 2010, 1:57:10 AM (15 years ago)
- Location:
- trunk/openjdk/hotspot
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/make/os2/makefiles/compile.make
r62 r113 67 67 -lkernel32.lib -luser32.lib -lgdi32.lib -lwinspool.lib \ 68 68 -lcomdlg32.lib -ladvapi32.lib -lshell32.lib -lole32.lib \ 69 -loleaut32.lib -lWsock32.lib -lwinmm.lib 69 -loleaut32.lib -lWsock32.lib -lwinmm.lib \ 70 -lemxlibwrap0.lib -lemxlibwrap1.lib -
trunk/openjdk/hotspot/make/os2/makefiles/debug.make
r109 r113 48 48 # Not included in includeDB because they don't match the logic of that file 49 49 # (it expects only one platform at a time which is windows for now) 50 Obj_Files += os_os2 .obj50 Obj_Files += os_os2_init.obj os_os2.obj 51 51 52 52 HS_BUILD_ID = $(HS_BUILD_VER)-debug -
trunk/openjdk/hotspot/make/os2/makefiles/product.make
r65 r113 49 49 # Not included in includeDB because they don't match the logic of that file 50 50 # (it expects only one platform at a time which is windows for now) 51 Obj_Files += os_os2 .obj51 Obj_Files += os_os2_init.obj os_os2.obj 52 52 53 53 HS_BUILD_ID = $(HS_BUILD_VER) -
trunk/openjdk/hotspot/src/os/windows/vm/os_windows.cpp
r64 r113 1114 1114 } 1115 1115 1116 #ifndef __WIN32OS2__ 1117 1116 1118 //----------------------------------------------------------- 1117 1119 // Helper functions for fatal error handler … … 1360 1362 } 1361 1363 1364 #endif /* __WIN32OS2__ */ 1365 1362 1366 bool os::dll_address_to_function_name(address addr, char *buf, 1363 1367 int buflen, int *offset) { … … 1375 1379 } 1376 1380 1381 #ifndef __WIN32OS2__ 1382 1377 1383 // save the start and end address of jvm.dll into param[0] and param[1] 1378 1384 static int _locate_jvm_dll(int pid, char* mod_fname, address base_addr, … … 1415 1421 return 0; 1416 1422 } 1423 1424 #endif /* __WIN32OS2__ */ 1417 1425 1418 1426 // Loads .dll/.so and … … 1543 1551 } 1544 1552 1553 #ifndef __WIN32OS2__ 1545 1554 1546 1555 void os::print_dll_info(outputStream *st) { … … 1549 1558 enumerate_modules(pid, _print_module, (void *)st); 1550 1559 } 1560 1561 #endif /* __WIN32OS2__ */ 1551 1562 1552 1563 // function pointer to Windows API "GetNativeSystemInfo". … … 3508 3519 } 3509 3520 3521 #ifndef __WIN32OS2__ 3510 3522 // initialize PSAPI or ToolHelp for fatal error handler 3511 3523 if (win32::is_nt()) _init_psapi(); 3512 3524 else _init_toolhelp(); 3525 #endif 3513 3526 3514 3527 #ifndef _WIN64
Note:
See TracChangeset
for help on using the changeset viewer.