From dfab448bd8352b372814ca8df0651612296d8e8e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 18 Jun 1998 21:50:38 +0000 Subject: Update. 1998-06-18 21:45 Ulrich Drepper * signal/signal.h: Add prototype for __sigaltstack. * sysdeps/unix/sysv/linux/syscalls.list: Add __sigaltstack name. Remove sigstack entry. * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add sigstack here. * sysdeps/unix/sysv/linux/sigstack.c: New file. * sysdeps/i386/backtrace.c: Add casts. --- sysdeps/i386/backtrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/i386') diff --git a/sysdeps/i386/backtrace.c b/sysdeps/i386/backtrace.c index 5e84205b04..38635988f4 100644 --- a/sysdeps/i386/backtrace.c +++ b/sysdeps/i386/backtrace.c @@ -55,7 +55,7 @@ __backtrace (array, size) current = (struct layout *) ebp; while (cnt < size) { - if (current < esp || current > __libc_stack_end) + if ((void *) current < esp || (void *) current > __libc_stack_end) /* This means the address is out of range. Note that for the toplevel we see a frame pointer with value NULL which clearly is out of range. */ -- cgit v1.2.3