LynxOS 178 does not define this macro.
gdb/gdbserver/ChangeLog:
* lynx-low.c (ptrace_request_to_str): Do not handle
PTRACE_GETTHREADLIST if this macro does not exist.
+2012-12-17 Joel Brobecker <brobecker@adacore.com>
+
+ * lynx-low.c (ptrace_request_to_str): Do not handle
+ PTRACE_GETTHREADLIST if this macro does not exist.
+
2012-12-15 Yao Qi <yao@codesourcery.com>
* Makefile.in (OBS): Add notif.o.
case PTRACE_GETLOADINFO:
return "PTRACE_GETLOADINFO";
break;
+#ifdef PTRACE_GETTHREADLIST
case PTRACE_GETTHREADLIST:
return "PTRACE_GETTHREADLIST";
break;
+#endif
}
return "<unknown-request>";
}