Relates :
|
|
Relates :
|
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
|