From 8ed12f3cdb2e15490a752dcde06c6e10460de096 Mon Sep 17 00:00:00 2001 From: mar Date: Tue, 1 Dec 1992 11:39:59 +0000 Subject: [PATCH] declare gdb_Options --- gdb/gdb_lib.h | 2 ++ include/gdb.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gdb/gdb_lib.h b/gdb/gdb_lib.h index c67b6eb3..b9f5205a 100644 --- a/gdb/gdb_lib.h +++ b/gdb/gdb_lib.h @@ -54,6 +54,8 @@ int (*gdb_fmv)() = gdb_fm; /* /************************************************************************/ +int gdb_Options=0; /* GDB options are set here */ + int gdb_Debug=0; /* debugging flags are */ /* stored here */ FILE *gdb_log = stderr; /* all debugging */ diff --git a/include/gdb.h b/include/gdb.h index 03426fd5..db7e6576 100644 --- a/include/gdb.h +++ b/include/gdb.h @@ -82,6 +82,8 @@ typedef struct fd_set {fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];} fd_set; #define GDB_ROUNDUP(n,b) ((((n)+(b)-1)/(b))*(b)) +extern int gdb_Options; /* Control optional features */ +#define GDB_OPT_KEEPALIVE 1 extern int gdb_Debug; /* debugging flags are */ /* stored here */ extern FILE *gdb_log; /* file descriptor for */ -- 2.45.2