Changeset 309 for trunk/openjdk/hotspot/agent/src/os
- Timestamp:
- Feb 13, 2012, 10:07:12 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:mergeinfo changed
/branches/vendor/oracle/openjdk6/b24 (added) merged: 308 /branches/vendor/oracle/openjdk6/current merged: 307
- Property svn:mergeinfo changed
-
trunk/openjdk/hotspot/agent/src/os/linux/libproc_impl.c
r278 r309 1 1 /* 2 * Copyright (c) 2003, 20 06, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/agent/src/os/linux/ps_core.c
r278 r309 1 1 /* 2 * Copyright (c) 2003, 20 09, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/agent/src/os/linux/ps_proc.c
r278 r309 1 1 /* 2 * Copyright (c) 2003, 20 08, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * … … 122 122 #endif 123 123 124 #ifdef _LP64 125 #ifdef PTRACE_GETREGS64 124 #if defined(_LP64) && defined(PTRACE_GETREGS64) 126 125 #define PTRACE_GETREGS_REQ PTRACE_GETREGS64 127 #endif 128 #else 129 #if defined(PTRACE_GETREGS) || defined(PT_GETREGS) 126 #elif defined(PTRACE_GETREGS) 130 127 #define PTRACE_GETREGS_REQ PTRACE_GETREGS 131 #endif 132 #endif /* _LP64 */ 128 #elif defined(PT_GETREGS) 129 #define PTRACE_GETREGS_REQ PT_GETREGS 130 #endif 133 131 134 132 #ifdef PTRACE_GETREGS_REQ -
trunk/openjdk/hotspot/agent/src/os/linux/symtab.c
r278 r309 1 1 /* 2 * Copyright (c) 2003, 20 05, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/agent/src/os/linux/symtab.h
r278 r309 1 1 /* 2 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 *
Note:
See TracChangeset
for help on using the changeset viewer.