aboutsummaryrefslogtreecommitdiff
path: root/agent/src/share/classes/sun/jvm/hotspot/runtime
diff options
context:
space:
mode:
authorxdono <none@none>2009-07-28 12:12:40 -0700
committerxdono <none@none>2009-07-28 12:12:40 -0700
commit412e4ec1a224f1982166752cb02e433969b35ed8 (patch)
treec5cfebf066712e491fe611d3bfac14520469fdd9 /agent/src/share/classes/sun/jvm/hotspot/runtime
parentd96ac59427e3e24ec758506ebb3bd832e2c28929 (diff)
downloadjdk8u_hotspot-412e4ec1a224f1982166752cb02e433969b35ed8.tar.gz
6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09 Reviewed-by: tbell, ohair
Diffstat (limited to 'agent/src/share/classes/sun/jvm/hotspot/runtime')
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java2
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java2
10 files changed, 10 insertions, 10 deletions
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java
index 306a9e677..431a18261 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2002-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java
index 6588da2e8..5b870c9fe 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java
index f86e4f7a2..96f963463 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2001 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java
index 9cd4aedf6..4a68a22b9 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2005 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java
index d4801fa05..b6aa76edc 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2001-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java
index 98becd018..6e6f0b8d7 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2001 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java
index fad351b49..7eb5f4924 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2005 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java
index 9ca93b931..425ad5c74 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java
index 9be499b5b..ce3694ad5 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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
diff --git a/agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java b/agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
index 6301b560a..fda1e4f39 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2000-2009 Sun Microsystems, Inc. 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