diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-01-05 22:19:50 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-01-05 22:19:50 +0000 |
commit | 58b16dda99bbbbebc098058800131a783dbed215 (patch) | |
tree | f2cad210cd8aa303a05e8d307f00f16666598818 /lib/libc/arch/hppa64/sys/sigpending.S | |
parent | 475a245e08bd55854e56e3d1183e8bf3245cfc90 (diff) |
System call stubs don't have a frame of their own, so use EMTRY_LEAF instead
of ENTRY. This avoids emitting bogus unwind entries, which makes gdb a lot
happier.
ok mickey@
Diffstat (limited to 'lib/libc/arch/hppa64/sys/sigpending.S')
-rw-r--r-- | lib/libc/arch/hppa64/sys/sigpending.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/hppa64/sys/sigpending.S b/lib/libc/arch/hppa64/sys/sigpending.S index 58bf9a58fcf..4955ac41ce6 100644 --- a/lib/libc/arch/hppa64/sys/sigpending.S +++ b/lib/libc/arch/hppa64/sys/sigpending.S @@ -1,4 +1,4 @@ -/* $OpenBSD: sigpending.S,v 1.2 2005/08/07 16:40:14 espie Exp $ */ +/* $OpenBSD: sigpending.S,v 1.3 2006/01/05 22:19:49 kettenis Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -28,7 +28,7 @@ #include "SYS.h" -SYSENTRY(sigpending,0) +SYSENTRY(sigpending) SYSCALL(sigpending) ldd HPPA_FRAME_ARG(0)(sp), t1 std ret0, 0(t1) |