Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8144885

agent/src/os/linux/libproc.h needs to support Linux/SPARC builds

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 9
    • 8u60, 9
    • hotspot
    • svc
    • b103
    • sparc
    • linux

        The include file agent/src/os/linux/libproc.h references the include file <sys/ptrace.h>. On Linux/SPARC systems this include file is located at <linux/ptrace.h). To support Linux/SPARC builds the following code needs to be placed in agent/src/os/linux/libproc.h:

        #if defined(sparcv9)
        #include <linux/ptrace.h>
        #else
        #include <sys/ptrace.h>
        #endif

              mikael Mikael Vidstedt
              gthornbr Gerald Thornbrugh (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: