This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH v4 15/16] extension language API for GDB: defs.h changes
- From: Doug Evans <xdje42 at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Wed, 15 Jan 2014 11:25:56 -0800
- Subject: [PATCH v4 15/16] extension language API for GDB: defs.h changes
- Authentication-results: sourceware.org; auth=none
This patch contains the changes to defs.h.
2014-01-15 Doug Evans <xdje42@gmail.com>
* defs.h: Update comment.
diff --git a/gdb/defs.h b/gdb/defs.h
index d86f4a9..8c13e66 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -159,13 +159,9 @@ extern char *debug_file_directory;
handler. Otherwise, SIGINT simply sets a flag; code that might
take a long time, and which ought to be interruptible, checks this
flag using the QUIT macro.
-
- If GDB is built with Python support, it uses Python's low-level
- interface to implement the flag. This approach makes it possible
- for Python and GDB SIGINT handling to coexist seamlessly.
- If GDB is built without Python, it instead uses its traditional
- variables. */
+ These functions use the extension_language_ops API to allow extension
+ language(s) and GDB SIGINT handling to coexist seamlessly. */
/* Clear the quit flag. */
extern void clear_quit_flag (void);