diff src/share/vm/runtime/vmStructs.hpp @ 7066:7d815d842ee0

Merge.
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 23 Nov 2012 11:50:27 +0100
parents da91efe96a93
children 7c15faa95ce7
line wrap: on
line diff
--- a/src/share/vm/runtime/vmStructs.hpp	Fri Nov 23 11:40:17 2012 +0100
+++ b/src/share/vm/runtime/vmStructs.hpp	Fri Nov 23 11:50:27 2012 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -78,10 +78,10 @@
 } VMStructEntry;
 
 typedef struct {
-  const char* typeName;            // Type name (example: "methodOopDesc")
+  const char* typeName;            // Type name (example: "Method")
   const char* superclassName;      // Superclass name, or null if none (example: "oopDesc")
-  int32_t isOopType;               // Does this type represent an oop typedef? (i.e., "methodOop" or
-                                   // "klassOop", but NOT "methodOopDesc")
+  int32_t isOopType;               // Does this type represent an oop typedef? (i.e., "Method*" or
+                                   // "Klass*", but NOT "Method")
   int32_t isIntegerType;           // Does this type represent an integer type (of arbitrary size)?
   int32_t isUnsigned;              // If so, is it unsigned?
   uint64_t size;                   // Size, in bytes, of the type