• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Révision3597fb8298b9e2b43c4ac35010f3bddce3a5cb94 (tree)
l'heure2006-02-26 22:03:33
AuteurMark Kettenis <kettenis@gnu....>
CommiterMark Kettenis

Message de Log

* i386obsd-tdep.c (i386obsd_trapframe_sniffer): Also recognize
"soft" interrupts.

Change Summary

Modification

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
1+2006-02-26 Mark Kettenis <kettenis@gnu.org>
2+
3+ * i386obsd-tdep.c (i386obsd_trapframe_sniffer): Also recognize
4+ "soft" interrupts.
5+
16 2006-02-24 Charles Wilson <cygwin@cwilson.fastmail.fm>
27
38 * gdb/defs.h: unconditionally include <fcntl.h>, and
--- a/gdb/i386obsd-tdep.c
+++ b/gdb/i386obsd-tdep.c
@@ -1,7 +1,7 @@
11 /* Target-dependent code for OpenBSD/i386.
22
33 Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002,
4- 2003, 2004, 2005
4+ 2003, 2004, 2005, 2006
55 Free Software Foundation, Inc.
66
77 This file is part of GDB.
@@ -423,9 +423,10 @@ i386obsd_trapframe_sniffer (const struct frame_unwind *self,
423423 return 0;
424424
425425 find_pc_partial_function (frame_pc_unwind (next_frame), &name, NULL, NULL);
426- return (name && ((strcmp (name, "calltrap") == 0)
427- || (strcmp (name, "syscall1") == 0)
428- || (strncmp (name, "Xintr", 5) == 0)));
426+ return (name && (strcmp (name, "calltrap") == 0
427+ || strcmp (name, "syscall1") == 0
428+ || strncmp (name, "Xintr", 5) == 0
429+ || strncmp (name, "Xsoft", 5) == 0));
429430 }
430431
431432 static const struct frame_unwind i386obsd_trapframe_unwind = {