Changeset 191
- Timestamp:
- Dec 6, 2010, 2:37:09 PM (15 years ago)
- Location:
- trunk/openjdk/jdk/src/windows/native/sun/windows
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_Toolkit.cpp
r190 r191 407 407 VERIFY(tk.RegisterClass() != NULL); 408 408 409 #ifndef __WIN32OS2__ 409 410 // Set up operator new/malloc out of memory handler. 410 411 NewHandler::init(); 412 #endif 411 413 412 414 //\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_new.cpp
r2 r191 24 24 */ 25 25 26 #ifndef __WIN32OS2__ 26 27 #include <new.h> 28 #endif 27 29 #include <stdio.h> 28 30 #include "awt_new.h" … … 47 49 #endif 48 50 51 #ifndef __WIN32OS2__ 49 52 50 53 void … … 78 81 return FALSE; 79 82 } 83 84 #endif /* !__WIN32OS2__ */ 80 85 81 86 // These three functions throw std::bad_alloc in an out of memory condition -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_new.h
r2 r191 29 29 #include "awt.h" 30 30 31 #ifndef __WIN32OS2__ 31 32 32 33 // This class is used for establishing and implementing an operator new/ … … 45 46 }; 46 47 48 #endif /* !__WIN32OS2__ */ 49 47 50 #endif /* AWT_NEW_H */
Note:
See TracChangeset
for help on using the changeset viewer.