kumquat-buildroot/sources/strace.patch
2003-09-03 07:28:50 +00:00

38 lines
913 B
Diff

--- strace-4.4/syscall.c.orig 2003-09-03 01:15:32.000000000 -0600
+++ strace-4.4/syscall.c 2003-09-03 01:20:35.000000000 -0600
@@ -71,10 +71,12 @@
# include <asm/rse.h>
#endif
+#ifndef HAVE_STRERROR
#ifndef SYS_ERRLIST_DECLARED
extern int sys_nerr;
extern char *sys_errlist[];
#endif /* SYS_ERRLIST_DECLARED */
+#endif /* HAVE_STERRROR */
#define NR_SYSCALL_BASE 0
#ifdef LINUX
@@ -1529,6 +1531,7 @@
#endif /* LINUX */
default:
tprintf("= -1 ");
+#ifndef HAVE_STRERROR
if (u_error < nerrnos && u_error < sys_nerr)
tprintf("%s (%s)", errnoent[u_error],
sys_errlist[u_error]);
@@ -1540,6 +1543,13 @@
sys_errlist[u_error]);
else
tprintf("E??? (errno %ld)", u_error);
+#else
+ if (u_error < nerrnos)
+ tprintf("%s (%s)", errnoent[u_error],
+ strerror(u_error));
+ else
+ tprintf("E??? (errno %ld)", u_error);
+#endif
break;
}
}