Ignore:
Timestamp:
Feb 13, 2012, 10:07:12 PM (14 years ago)
Author:
dmik
Message:

trunk: Merged in openjdk6 b24 from branches/vendor/oracle.

Location:
trunk/openjdk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk

  • trunk/openjdk/hotspot/agent/src/os/linux/libproc_impl.c

    r278 r309  
    11/*
    2  * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
     2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
    33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44 *
  • trunk/openjdk/hotspot/agent/src/os/linux/ps_core.c

    r278 r309  
    11/*
    2  * Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
     2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
    33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44 *
  • trunk/openjdk/hotspot/agent/src/os/linux/ps_proc.c

    r278 r309  
    11/*
    2  * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
     2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
    33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44 *
     
    122122#endif
    123123
    124 #ifdef _LP64
    125 #ifdef PTRACE_GETREGS64
     124#if defined(_LP64) && defined(PTRACE_GETREGS64)
    126125#define PTRACE_GETREGS_REQ PTRACE_GETREGS64
    127 #endif
    128 #else
    129 #if defined(PTRACE_GETREGS) || defined(PT_GETREGS)
     126#elif defined(PTRACE_GETREGS)
    130127#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
    133131
    134132#ifdef PTRACE_GETREGS_REQ
  • trunk/openjdk/hotspot/agent/src/os/linux/symtab.c

    r278 r309  
    11/*
    2  * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
     2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
    33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44 *
  • trunk/openjdk/hotspot/agent/src/os/linux/symtab.h

    r278 r309  
    11/*
    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.
    33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44 *
Note: See TracChangeset for help on using the changeset viewer.