1999-05-11 22:29:07 +02:00
|
|
|
|
/* Event loop machinery for GDB, the GNU debugger.
|
2014-01-01 04:54:24 +01:00
|
|
|
|
Copyright (C) 1999-2014 Free Software Foundation, Inc.
|
1999-05-11 22:29:07 +02:00
|
|
|
|
Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
|
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-05-11 22:29:07 +02:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2010-12-29 01:58:14 +01:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
1999-06-21 15:27:42 +02:00
|
|
|
|
#include "event-loop.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#include "event-top.h"
|
2013-01-25 15:17:10 +01:00
|
|
|
|
#include "queue.h"
|
2000-07-05 12:25:43 +02:00
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2000-07-05 12:25:43 +02:00
|
|
|
|
#if defined (HAVE_POLL_H)
|
1999-06-21 15:27:42 +02:00
|
|
|
|
#include <poll.h>
|
2000-07-05 12:25:43 +02:00
|
|
|
|
#elif defined (HAVE_SYS_POLL_H)
|
|
|
|
|
#include <sys/poll.h>
|
|
|
|
|
#endif
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif
|
2000-07-05 12:25:43 +02:00
|
|
|
|
|
1999-06-21 15:27:42 +02:00
|
|
|
|
#include <sys/types.h>
|
remove gdb_string.h
This removes gdb_string.h. This patch is purely mechanical. I
created it by running the two commands:
git rm common/gdb_string.h
perl -pi -e's/"gdb_string.h"/<string.h>/;' *.[chyl] */*.[chyl]
2013-11-18 Tom Tromey <tromey@redhat.com>
* common/gdb_string.h: Remove.
* aarch64-tdep.c: Use string.h, not gdb_string.h.
* ada-exp.y: Use string.h, not gdb_string.h.
* ada-lang.c: Use string.h, not gdb_string.h.
* ada-lex.l: Use string.h, not gdb_string.h.
* ada-typeprint.c: Use string.h, not gdb_string.h.
* ada-valprint.c: Use string.h, not gdb_string.h.
* aix-thread.c: Use string.h, not gdb_string.h.
* alpha-linux-tdep.c: Use string.h, not gdb_string.h.
* alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
* alpha-nat.c: Use string.h, not gdb_string.h.
* alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
* alpha-tdep.c: Use string.h, not gdb_string.h.
* alphanbsd-tdep.c: Use string.h, not gdb_string.h.
* amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
* amd64-linux-nat.c: Use string.h, not gdb_string.h.
* amd64-linux-tdep.c: Use string.h, not gdb_string.h.
* amd64-nat.c: Use string.h, not gdb_string.h.
* amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
* amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
* amd64obsd-tdep.c: Use string.h, not gdb_string.h.
* arch-utils.c: Use string.h, not gdb_string.h.
* arm-linux-nat.c: Use string.h, not gdb_string.h.
* arm-linux-tdep.c: Use string.h, not gdb_string.h.
* arm-tdep.c: Use string.h, not gdb_string.h.
* arm-wince-tdep.c: Use string.h, not gdb_string.h.
* armbsd-tdep.c: Use string.h, not gdb_string.h.
* armnbsd-nat.c: Use string.h, not gdb_string.h.
* armnbsd-tdep.c: Use string.h, not gdb_string.h.
* armobsd-tdep.c: Use string.h, not gdb_string.h.
* avr-tdep.c: Use string.h, not gdb_string.h.
* ax-gdb.c: Use string.h, not gdb_string.h.
* ax-general.c: Use string.h, not gdb_string.h.
* bcache.c: Use string.h, not gdb_string.h.
* bfin-tdep.c: Use string.h, not gdb_string.h.
* breakpoint.c: Use string.h, not gdb_string.h.
* build-id.c: Use string.h, not gdb_string.h.
* buildsym.c: Use string.h, not gdb_string.h.
* c-exp.y: Use string.h, not gdb_string.h.
* c-lang.c: Use string.h, not gdb_string.h.
* c-typeprint.c: Use string.h, not gdb_string.h.
* c-valprint.c: Use string.h, not gdb_string.h.
* charset.c: Use string.h, not gdb_string.h.
* cli-out.c: Use string.h, not gdb_string.h.
* cli/cli-cmds.c: Use string.h, not gdb_string.h.
* cli/cli-decode.c: Use string.h, not gdb_string.h.
* cli/cli-dump.c: Use string.h, not gdb_string.h.
* cli/cli-interp.c: Use string.h, not gdb_string.h.
* cli/cli-logging.c: Use string.h, not gdb_string.h.
* cli/cli-script.c: Use string.h, not gdb_string.h.
* cli/cli-setshow.c: Use string.h, not gdb_string.h.
* cli/cli-utils.c: Use string.h, not gdb_string.h.
* coffread.c: Use string.h, not gdb_string.h.
* common/common-utils.c: Use string.h, not gdb_string.h.
* common/filestuff.c: Use string.h, not gdb_string.h.
* common/linux-procfs.c: Use string.h, not gdb_string.h.
* common/linux-ptrace.c: Use string.h, not gdb_string.h.
* common/signals.c: Use string.h, not gdb_string.h.
* common/vec.h: Use string.h, not gdb_string.h.
* core-regset.c: Use string.h, not gdb_string.h.
* corefile.c: Use string.h, not gdb_string.h.
* corelow.c: Use string.h, not gdb_string.h.
* cp-abi.c: Use string.h, not gdb_string.h.
* cp-support.c: Use string.h, not gdb_string.h.
* cp-valprint.c: Use string.h, not gdb_string.h.
* cris-tdep.c: Use string.h, not gdb_string.h.
* d-lang.c: Use string.h, not gdb_string.h.
* dbxread.c: Use string.h, not gdb_string.h.
* dcache.c: Use string.h, not gdb_string.h.
* demangle.c: Use string.h, not gdb_string.h.
* dicos-tdep.c: Use string.h, not gdb_string.h.
* disasm.c: Use string.h, not gdb_string.h.
* doublest.c: Use string.h, not gdb_string.h.
* dsrec.c: Use string.h, not gdb_string.h.
* dummy-frame.c: Use string.h, not gdb_string.h.
* dwarf2-frame.c: Use string.h, not gdb_string.h.
* dwarf2loc.c: Use string.h, not gdb_string.h.
* dwarf2read.c: Use string.h, not gdb_string.h.
* elfread.c: Use string.h, not gdb_string.h.
* environ.c: Use string.h, not gdb_string.h.
* eval.c: Use string.h, not gdb_string.h.
* event-loop.c: Use string.h, not gdb_string.h.
* exceptions.c: Use string.h, not gdb_string.h.
* exec.c: Use string.h, not gdb_string.h.
* expprint.c: Use string.h, not gdb_string.h.
* f-exp.y: Use string.h, not gdb_string.h.
* f-lang.c: Use string.h, not gdb_string.h.
* f-typeprint.c: Use string.h, not gdb_string.h.
* f-valprint.c: Use string.h, not gdb_string.h.
* fbsd-nat.c: Use string.h, not gdb_string.h.
* findcmd.c: Use string.h, not gdb_string.h.
* findvar.c: Use string.h, not gdb_string.h.
* fork-child.c: Use string.h, not gdb_string.h.
* frame.c: Use string.h, not gdb_string.h.
* frv-linux-tdep.c: Use string.h, not gdb_string.h.
* frv-tdep.c: Use string.h, not gdb_string.h.
* gdb.c: Use string.h, not gdb_string.h.
* gdb_bfd.c: Use string.h, not gdb_string.h.
* gdbarch.c: Use string.h, not gdb_string.h.
* gdbtypes.c: Use string.h, not gdb_string.h.
* gnu-nat.c: Use string.h, not gdb_string.h.
* gnu-v2-abi.c: Use string.h, not gdb_string.h.
* gnu-v3-abi.c: Use string.h, not gdb_string.h.
* go-exp.y: Use string.h, not gdb_string.h.
* go-lang.c: Use string.h, not gdb_string.h.
* go32-nat.c: Use string.h, not gdb_string.h.
* hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
* hppa-linux-nat.c: Use string.h, not gdb_string.h.
* hppanbsd-tdep.c: Use string.h, not gdb_string.h.
* hppaobsd-tdep.c: Use string.h, not gdb_string.h.
* i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
* i386-dicos-tdep.c: Use string.h, not gdb_string.h.
* i386-linux-nat.c: Use string.h, not gdb_string.h.
* i386-linux-tdep.c: Use string.h, not gdb_string.h.
* i386-nto-tdep.c: Use string.h, not gdb_string.h.
* i386-sol2-tdep.c: Use string.h, not gdb_string.h.
* i386-tdep.c: Use string.h, not gdb_string.h.
* i386bsd-tdep.c: Use string.h, not gdb_string.h.
* i386gnu-nat.c: Use string.h, not gdb_string.h.
* i386nbsd-tdep.c: Use string.h, not gdb_string.h.
* i386obsd-tdep.c: Use string.h, not gdb_string.h.
* i387-tdep.c: Use string.h, not gdb_string.h.
* ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
* ia64-linux-nat.c: Use string.h, not gdb_string.h.
* inf-child.c: Use string.h, not gdb_string.h.
* inf-ptrace.c: Use string.h, not gdb_string.h.
* inf-ttrace.c: Use string.h, not gdb_string.h.
* infcall.c: Use string.h, not gdb_string.h.
* infcmd.c: Use string.h, not gdb_string.h.
* inflow.c: Use string.h, not gdb_string.h.
* infrun.c: Use string.h, not gdb_string.h.
* interps.c: Use string.h, not gdb_string.h.
* iq2000-tdep.c: Use string.h, not gdb_string.h.
* irix5-nat.c: Use string.h, not gdb_string.h.
* jv-exp.y: Use string.h, not gdb_string.h.
* jv-lang.c: Use string.h, not gdb_string.h.
* jv-typeprint.c: Use string.h, not gdb_string.h.
* jv-valprint.c: Use string.h, not gdb_string.h.
* language.c: Use string.h, not gdb_string.h.
* linux-fork.c: Use string.h, not gdb_string.h.
* linux-nat.c: Use string.h, not gdb_string.h.
* lm32-tdep.c: Use string.h, not gdb_string.h.
* m2-exp.y: Use string.h, not gdb_string.h.
* m2-typeprint.c: Use string.h, not gdb_string.h.
* m32c-tdep.c: Use string.h, not gdb_string.h.
* m32r-linux-nat.c: Use string.h, not gdb_string.h.
* m32r-linux-tdep.c: Use string.h, not gdb_string.h.
* m32r-rom.c: Use string.h, not gdb_string.h.
* m32r-tdep.c: Use string.h, not gdb_string.h.
* m68hc11-tdep.c: Use string.h, not gdb_string.h.
* m68k-tdep.c: Use string.h, not gdb_string.h.
* m68kbsd-tdep.c: Use string.h, not gdb_string.h.
* m68klinux-nat.c: Use string.h, not gdb_string.h.
* m68klinux-tdep.c: Use string.h, not gdb_string.h.
* m88k-tdep.c: Use string.h, not gdb_string.h.
* macrocmd.c: Use string.h, not gdb_string.h.
* main.c: Use string.h, not gdb_string.h.
* mdebugread.c: Use string.h, not gdb_string.h.
* mem-break.c: Use string.h, not gdb_string.h.
* memattr.c: Use string.h, not gdb_string.h.
* memory-map.c: Use string.h, not gdb_string.h.
* mep-tdep.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
* mi/mi-cmds.c: Use string.h, not gdb_string.h.
* mi/mi-console.c: Use string.h, not gdb_string.h.
* mi/mi-getopt.c: Use string.h, not gdb_string.h.
* mi/mi-interp.c: Use string.h, not gdb_string.h.
* mi/mi-main.c: Use string.h, not gdb_string.h.
* mi/mi-parse.c: Use string.h, not gdb_string.h.
* microblaze-rom.c: Use string.h, not gdb_string.h.
* microblaze-tdep.c: Use string.h, not gdb_string.h.
* mingw-hdep.c: Use string.h, not gdb_string.h.
* minidebug.c: Use string.h, not gdb_string.h.
* minsyms.c: Use string.h, not gdb_string.h.
* mips-irix-tdep.c: Use string.h, not gdb_string.h.
* mips-linux-tdep.c: Use string.h, not gdb_string.h.
* mips-tdep.c: Use string.h, not gdb_string.h.
* mips64obsd-tdep.c: Use string.h, not gdb_string.h.
* mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
* mipsread.c: Use string.h, not gdb_string.h.
* mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
* mn10300-tdep.c: Use string.h, not gdb_string.h.
* monitor.c: Use string.h, not gdb_string.h.
* moxie-tdep.c: Use string.h, not gdb_string.h.
* mt-tdep.c: Use string.h, not gdb_string.h.
* nbsd-tdep.c: Use string.h, not gdb_string.h.
* nios2-linux-tdep.c: Use string.h, not gdb_string.h.
* nto-procfs.c: Use string.h, not gdb_string.h.
* nto-tdep.c: Use string.h, not gdb_string.h.
* objc-lang.c: Use string.h, not gdb_string.h.
* objfiles.c: Use string.h, not gdb_string.h.
* opencl-lang.c: Use string.h, not gdb_string.h.
* osabi.c: Use string.h, not gdb_string.h.
* osdata.c: Use string.h, not gdb_string.h.
* p-exp.y: Use string.h, not gdb_string.h.
* p-lang.c: Use string.h, not gdb_string.h.
* p-typeprint.c: Use string.h, not gdb_string.h.
* parse.c: Use string.h, not gdb_string.h.
* posix-hdep.c: Use string.h, not gdb_string.h.
* ppc-linux-nat.c: Use string.h, not gdb_string.h.
* ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
* ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
* ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
* ppcobsd-tdep.c: Use string.h, not gdb_string.h.
* printcmd.c: Use string.h, not gdb_string.h.
* procfs.c: Use string.h, not gdb_string.h.
* prologue-value.c: Use string.h, not gdb_string.h.
* python/py-auto-load.c: Use string.h, not gdb_string.h.
* python/py-gdb-readline.c: Use string.h, not gdb_string.h.
* ravenscar-thread.c: Use string.h, not gdb_string.h.
* regcache.c: Use string.h, not gdb_string.h.
* registry.c: Use string.h, not gdb_string.h.
* remote-fileio.c: Use string.h, not gdb_string.h.
* remote-m32r-sdi.c: Use string.h, not gdb_string.h.
* remote-mips.c: Use string.h, not gdb_string.h.
* remote-sim.c: Use string.h, not gdb_string.h.
* remote.c: Use string.h, not gdb_string.h.
* reverse.c: Use string.h, not gdb_string.h.
* rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
* ser-base.c: Use string.h, not gdb_string.h.
* ser-go32.c: Use string.h, not gdb_string.h.
* ser-mingw.c: Use string.h, not gdb_string.h.
* ser-pipe.c: Use string.h, not gdb_string.h.
* ser-tcp.c: Use string.h, not gdb_string.h.
* ser-unix.c: Use string.h, not gdb_string.h.
* serial.c: Use string.h, not gdb_string.h.
* sh-tdep.c: Use string.h, not gdb_string.h.
* sh64-tdep.c: Use string.h, not gdb_string.h.
* shnbsd-tdep.c: Use string.h, not gdb_string.h.
* skip.c: Use string.h, not gdb_string.h.
* sol-thread.c: Use string.h, not gdb_string.h.
* solib-dsbt.c: Use string.h, not gdb_string.h.
* solib-frv.c: Use string.h, not gdb_string.h.
* solib-osf.c: Use string.h, not gdb_string.h.
* solib-spu.c: Use string.h, not gdb_string.h.
* solib-target.c: Use string.h, not gdb_string.h.
* solib.c: Use string.h, not gdb_string.h.
* somread.c: Use string.h, not gdb_string.h.
* source.c: Use string.h, not gdb_string.h.
* sparc-nat.c: Use string.h, not gdb_string.h.
* sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
* sparc-tdep.c: Use string.h, not gdb_string.h.
* sparc64-tdep.c: Use string.h, not gdb_string.h.
* sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
* sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
* sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
* spu-linux-nat.c: Use string.h, not gdb_string.h.
* spu-multiarch.c: Use string.h, not gdb_string.h.
* spu-tdep.c: Use string.h, not gdb_string.h.
* stabsread.c: Use string.h, not gdb_string.h.
* stack.c: Use string.h, not gdb_string.h.
* std-regs.c: Use string.h, not gdb_string.h.
* symfile.c: Use string.h, not gdb_string.h.
* symmisc.c: Use string.h, not gdb_string.h.
* symtab.c: Use string.h, not gdb_string.h.
* target.c: Use string.h, not gdb_string.h.
* thread.c: Use string.h, not gdb_string.h.
* tilegx-linux-nat.c: Use string.h, not gdb_string.h.
* tilegx-tdep.c: Use string.h, not gdb_string.h.
* top.c: Use string.h, not gdb_string.h.
* tracepoint.c: Use string.h, not gdb_string.h.
* tui/tui-command.c: Use string.h, not gdb_string.h.
* tui/tui-data.c: Use string.h, not gdb_string.h.
* tui/tui-disasm.c: Use string.h, not gdb_string.h.
* tui/tui-file.c: Use string.h, not gdb_string.h.
* tui/tui-layout.c: Use string.h, not gdb_string.h.
* tui/tui-out.c: Use string.h, not gdb_string.h.
* tui/tui-regs.c: Use string.h, not gdb_string.h.
* tui/tui-source.c: Use string.h, not gdb_string.h.
* tui/tui-stack.c: Use string.h, not gdb_string.h.
* tui/tui-win.c: Use string.h, not gdb_string.h.
* tui/tui-windata.c: Use string.h, not gdb_string.h.
* tui/tui-winsource.c: Use string.h, not gdb_string.h.
* typeprint.c: Use string.h, not gdb_string.h.
* ui-file.c: Use string.h, not gdb_string.h.
* ui-out.c: Use string.h, not gdb_string.h.
* user-regs.c: Use string.h, not gdb_string.h.
* utils.c: Use string.h, not gdb_string.h.
* v850-tdep.c: Use string.h, not gdb_string.h.
* valarith.c: Use string.h, not gdb_string.h.
* valops.c: Use string.h, not gdb_string.h.
* valprint.c: Use string.h, not gdb_string.h.
* value.c: Use string.h, not gdb_string.h.
* varobj.c: Use string.h, not gdb_string.h.
* vax-tdep.c: Use string.h, not gdb_string.h.
* vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
* vaxobsd-tdep.c: Use string.h, not gdb_string.h.
* windows-nat.c: Use string.h, not gdb_string.h.
* xcoffread.c: Use string.h, not gdb_string.h.
* xml-support.c: Use string.h, not gdb_string.h.
* xstormy16-tdep.c: Use string.h, not gdb_string.h.
* xtensa-linux-nat.c: Use string.h, not gdb_string.h.
2013-11-06 15:14:23 +01:00
|
|
|
|
#include <string.h>
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#include <errno.h>
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#include <sys/time.h>
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
|
#include "exceptions.h"
|
2005-04-25 23:45:56 +02:00
|
|
|
|
#include "gdb_assert.h"
|
* NEWS: Mention native Windows support.
* Makefile.in (gdb_select_h, ser_tcp_h): New.
(ALLDEPFILES): Add ser-mingw.c.
(event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
(ser-tcp.o, ser-unix.o): Update.
(ser-mingw.o): New rule.
* configure: Regenerated.
* configure.ac: Add ser-mingw.o for mingw32.
* ser-mingw.c: New file.
* event-loop.c: Include "gdb_select.h".
(gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
* ser-base.c: Include "gdb_select.h".
(ser_base_wait_for): Use gdb_select.
* serial.c (serial_for_fd): New function.
(serial_fdopen): Try "terminal" before "hardwire". Initialize
the allocated struct serial.
(serial_wait_handle): New function.
* serial.h (serial_for_fd, serial_wait_handle): New prototypes.
(struct serial_ops) [USE_WIN32API]: Add wait_handle.
* gdb_select.h: New file.
* ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
(net_close, net_read_prim, net_write_prim): Make global.
(net_open): Likewise. Pass an exception set to select. Whitespace fix.
Document why we can not use gdb_select.
(_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
* ser-tcp.h: New file.
* inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
(handle_sigio): Use gdb_select.
(initialize_stdin_serial): New function.
* terminal.h (initialize_stdin_serial): New prototype.
* top.c (gdb_init): Call initialize_stdin_serial.
* mingw-hdep.c (gdb_select): New function, moved from gdb_select in
event-loop.c. Add exception condition support. Use serial_for_fd
and serial_wait_handle. Fix timeout handling.
* posix-hdep.c: Include "gdb_select.h".
(gdb_select): New function.
* remote-st.c (connect_command): Use gdb_select.
* ser-unix.c: Include "gdb_select.h".
(hardwire_send_break, wait_for): Use gdb_select.
2006-02-10 23:01:43 +01:00
|
|
|
|
#include "gdb_select.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Tell create_file_handler what events we are interested in.
|
|
|
|
|
This is used by the select version of the event loop. */
|
2010-05-25 17:48:44 +02:00
|
|
|
|
|
|
|
|
|
#define GDB_READABLE (1<<1)
|
|
|
|
|
#define GDB_WRITABLE (1<<2)
|
|
|
|
|
#define GDB_EXCEPTION (1<<3)
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Data point to pass to the event handler. */
|
|
|
|
|
typedef union event_data
|
|
|
|
|
{
|
|
|
|
|
void *ptr;
|
|
|
|
|
int integer;
|
|
|
|
|
} event_data;
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
typedef struct gdb_event gdb_event;
|
2008-10-24 21:33:39 +02:00
|
|
|
|
typedef void (event_handler_func) (event_data);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* Event for the GDB event system. Events are queued by calling
|
2010-12-29 01:58:14 +01:00
|
|
|
|
async_queue_event and serviced later on by gdb_do_one_event. An
|
1999-09-22 05:28:34 +02:00
|
|
|
|
event can be, for instance, a file descriptor becoming ready to be
|
2008-10-24 21:33:39 +02:00
|
|
|
|
read. Servicing an event simply means that the procedure PROC will
|
1999-09-22 05:28:34 +02:00
|
|
|
|
be called. We have 2 queues, one for file handlers that we listen
|
|
|
|
|
to in the event loop, and one for the file handlers+events that are
|
2010-12-29 01:58:14 +01:00
|
|
|
|
ready. The procedure PROC associated with each event is dependant
|
2008-10-24 21:33:39 +02:00
|
|
|
|
of the event source. In the case of monitored file descriptors, it
|
|
|
|
|
is always the same (handle_file_event). Its duty is to invoke the
|
|
|
|
|
handler associated with the file descriptor whose state change
|
|
|
|
|
generated the event, plus doing other cleanups and such. In the
|
|
|
|
|
case of async signal handlers, it is
|
|
|
|
|
invoke_async_signal_handler. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
2013-01-25 15:17:10 +01:00
|
|
|
|
typedef struct gdb_event
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Procedure to call to service this event. */
|
|
|
|
|
event_handler_func *proc;
|
|
|
|
|
|
|
|
|
|
/* Data to pass to the event handler. */
|
|
|
|
|
event_data data;
|
2013-01-25 15:17:10 +01:00
|
|
|
|
} *gdb_event_p;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* Information about each file descriptor we register with the event
|
2010-12-29 01:58:14 +01:00
|
|
|
|
loop. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
typedef struct file_handler
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
int fd; /* File descriptor. */
|
|
|
|
|
int mask; /* Events we want to monitor: POLLIN, etc. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
int ready_mask; /* Events that have been seen since
|
2010-12-29 01:58:14 +01:00
|
|
|
|
the last time. */
|
|
|
|
|
handler_func *proc; /* Procedure to call when fd is ready. */
|
|
|
|
|
gdb_client_data client_data; /* Argument to pass to proc. */
|
|
|
|
|
int error; /* Was an error detected on this fd? */
|
|
|
|
|
struct file_handler *next_file; /* Next registered file descriptor. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
|
|
|
|
file_handler;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* PROC is a function to be invoked when the READY flag is set. This
|
1999-09-22 05:28:34 +02:00
|
|
|
|
happens when there has been a signal and the corresponding signal
|
2010-12-29 01:58:14 +01:00
|
|
|
|
handler has 'triggered' this async_signal_handler for execution.
|
|
|
|
|
The actual work to be done in response to a signal will be carried
|
|
|
|
|
out by PROC at a later time, within process_event. This provides a
|
|
|
|
|
deferred execution of signal handlers.
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
Async_init_signals takes care of setting up such an
|
2010-12-29 01:58:14 +01:00
|
|
|
|
async_signal_handler for each interesting signal. */
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
typedef struct async_signal_handler
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
int ready; /* If ready, call this handler
|
|
|
|
|
from the main event loop, using
|
|
|
|
|
invoke_async_handler. */
|
|
|
|
|
struct async_signal_handler *next_handler; /* Ptr to next handler. */
|
|
|
|
|
sig_handler_func *proc; /* Function to call to do the work. */
|
|
|
|
|
gdb_client_data client_data; /* Argument to async_handler_func. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
|
|
|
|
async_signal_handler;
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* PROC is a function to be invoked when the READY flag is set. This
|
|
|
|
|
happens when the event has been marked with
|
|
|
|
|
MARK_ASYNC_EVENT_HANDLER. The actual work to be done in response
|
|
|
|
|
to an event will be carried out by PROC at a later time, within
|
|
|
|
|
process_event. This provides a deferred execution of event
|
|
|
|
|
handlers. */
|
|
|
|
|
typedef struct async_event_handler
|
|
|
|
|
{
|
|
|
|
|
/* If ready, call this handler from the main event loop, using
|
|
|
|
|
invoke_event_handler. */
|
|
|
|
|
int ready;
|
|
|
|
|
|
|
|
|
|
/* Point to next handler. */
|
|
|
|
|
struct async_event_handler *next_handler;
|
|
|
|
|
|
|
|
|
|
/* Function to call to do the work. */
|
|
|
|
|
async_event_handler_func *proc;
|
|
|
|
|
|
|
|
|
|
/* Argument to PROC. */
|
|
|
|
|
gdb_client_data client_data;
|
|
|
|
|
}
|
|
|
|
|
async_event_handler;
|
|
|
|
|
|
2013-01-25 15:17:10 +01:00
|
|
|
|
DECLARE_QUEUE_P(gdb_event_p);
|
|
|
|
|
DEFINE_QUEUE_P(gdb_event_p);
|
|
|
|
|
static QUEUE(gdb_event_p) *event_queue = NULL;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* Gdb_notifier is just a list of file descriptors gdb is interested in.
|
|
|
|
|
These are the input file descriptor, and the target file
|
2010-12-29 01:58:14 +01:00
|
|
|
|
descriptor. We have two flavors of the notifier, one for platforms
|
1999-05-11 22:29:07 +02:00
|
|
|
|
that have the POLL function, the other for those that don't, and
|
2010-12-29 01:58:14 +01:00
|
|
|
|
only support SELECT. Each of the elements in the gdb_notifier list is
|
1999-05-11 22:29:07 +02:00
|
|
|
|
basically a description of what kind of events gdb is interested
|
2010-12-29 01:58:14 +01:00
|
|
|
|
in, for each fd. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
1999-05-25 20:09:09 +02:00
|
|
|
|
/* As of 1999-04-30 only the input file descriptor is registered with the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
event loop. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
/* Do we use poll or select ? */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#define USE_POLL 1
|
|
|
|
|
#else
|
|
|
|
|
#define USE_POLL 0
|
|
|
|
|
#endif /* HAVE_POLL */
|
|
|
|
|
|
|
|
|
|
static unsigned char use_poll = USE_POLL;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2005-04-25 23:45:56 +02:00
|
|
|
|
#ifdef USE_WIN32API
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#include <io.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
static struct
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Ptr to head of file handler list. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
file_handler *first_file_handler;
|
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#ifdef HAVE_POLL
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Ptr to array of pollfd structures. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
struct pollfd *poll_fds;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Timeout in milliseconds for calls to poll(). */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
int poll_timeout;
|
|
|
|
|
#endif
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* Masks to be used in the next call to select.
|
2010-12-29 01:58:14 +01:00
|
|
|
|
Bits are set in response to calls to create_file_handler. */
|
2000-03-20 20:59:38 +01:00
|
|
|
|
fd_set check_masks[3];
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* What file descriptors were found ready by select. */
|
2000-03-20 20:59:38 +01:00
|
|
|
|
fd_set ready_masks[3];
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Number of file descriptors to monitor (for poll). */
|
|
|
|
|
/* Number of valid bits (highest fd value + 1) (for select). */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
int num_fds;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Time structure for calls to select(). */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
struct timeval select_timeout;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Flag to tell whether the timeout should be used. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
int timeout_valid;
|
1999-09-28 23:55:21 +02:00
|
|
|
|
}
|
1999-05-11 22:29:07 +02:00
|
|
|
|
gdb_notifier;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Structure associated with a timer. PROC will be executed at the
|
|
|
|
|
first occasion after WHEN. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
struct gdb_timer
|
|
|
|
|
{
|
|
|
|
|
struct timeval when;
|
|
|
|
|
int timer_id;
|
|
|
|
|
struct gdb_timer *next;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
timer_handler_func *proc; /* Function to call to do the work. */
|
|
|
|
|
gdb_client_data client_data; /* Argument to async_handler_func. */
|
2010-05-03 22:58:21 +02:00
|
|
|
|
};
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* List of currently active timers. It is sorted in order of
|
|
|
|
|
increasing timers. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static struct
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Pointer to first in timer list. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
struct gdb_timer *first_timer;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Id of the last timer created. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
int num_timers;
|
|
|
|
|
}
|
|
|
|
|
timer_list;
|
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
/* All the async_signal_handlers gdb is interested in are kept onto
|
2010-12-29 01:58:14 +01:00
|
|
|
|
this list. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
static struct
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Pointer to first in handler list. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
async_signal_handler *first_handler;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Pointer to last in handler list. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
async_signal_handler *last_handler;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
sighandler_list;
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* All the async_event_handlers gdb is interested in are kept onto
|
2010-12-29 01:58:14 +01:00
|
|
|
|
this list. */
|
2008-10-24 21:33:39 +02:00
|
|
|
|
static struct
|
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Pointer to first in handler list. */
|
2008-10-24 21:33:39 +02:00
|
|
|
|
async_event_handler *first_handler;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Pointer to last in handler list. */
|
2008-10-24 21:33:39 +02:00
|
|
|
|
async_event_handler *last_handler;
|
|
|
|
|
}
|
|
|
|
|
async_event_handler_list;
|
|
|
|
|
|
|
|
|
|
static int invoke_async_signal_handlers (void);
|
|
|
|
|
static void create_file_handler (int fd, int mask, handler_func *proc,
|
|
|
|
|
gdb_client_data client_data);
|
|
|
|
|
static void handle_file_event (event_data data);
|
|
|
|
|
static void check_async_event_handlers (void);
|
|
|
|
|
static int gdb_wait_for_event (int);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static void poll_timers (void);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Create a generic event, to be enqueued in the event queue for
|
|
|
|
|
processing. PROC is the procedure associated to the event. DATA
|
|
|
|
|
is passed to PROC upon PROC invocation. */
|
|
|
|
|
|
|
|
|
|
static gdb_event *
|
|
|
|
|
create_event (event_handler_func proc, event_data data)
|
|
|
|
|
{
|
|
|
|
|
gdb_event *event;
|
|
|
|
|
|
|
|
|
|
event = xmalloc (sizeof (*event));
|
|
|
|
|
event->proc = proc;
|
|
|
|
|
event->data = data;
|
|
|
|
|
|
|
|
|
|
return event;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-13 23:40:00 +02:00
|
|
|
|
/* Create a file event, to be enqueued in the event queue for
|
2010-12-29 01:58:14 +01:00
|
|
|
|
processing. The procedure associated to this event is always
|
1999-09-13 23:40:00 +02:00
|
|
|
|
handle_file_event, which will in turn invoke the one that was
|
2010-12-29 01:58:14 +01:00
|
|
|
|
associated to FD when it was registered with the event loop. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static gdb_event *
|
|
|
|
|
create_file_event (int fd)
|
1999-09-13 23:40:00 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
event_data data;
|
1999-09-13 23:40:00 +02:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
data.integer = fd;
|
|
|
|
|
return create_event (handle_file_event, data);
|
1999-09-13 23:40:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-25 15:17:10 +01:00
|
|
|
|
|
|
|
|
|
/* Free EVENT. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gdb_event_xfree (struct gdb_event *event)
|
|
|
|
|
{
|
|
|
|
|
xfree (event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize the event queue. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
initialize_event_loop (void)
|
|
|
|
|
{
|
|
|
|
|
event_queue = QUEUE_alloc (gdb_event_p, gdb_event_xfree);
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
/* Process one event.
|
|
|
|
|
The event can be the next one to be serviced in the event queue,
|
|
|
|
|
or an asynchronous event handler can be invoked in response to
|
|
|
|
|
the reception of a signal.
|
|
|
|
|
If an event was processed (either way), 1 is returned otherwise
|
2008-10-24 21:33:39 +02:00
|
|
|
|
0 is returned.
|
1999-05-11 22:29:07 +02:00
|
|
|
|
Scan the queue from head to tail, processing therefore the high
|
|
|
|
|
priority events first, by invoking the associated event handler
|
2010-12-29 01:58:14 +01:00
|
|
|
|
procedure. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
static int
|
1999-09-22 05:28:34 +02:00
|
|
|
|
process_event (void)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
/* First let's see if there are any asynchronous event handlers that
|
2010-12-29 01:58:14 +01:00
|
|
|
|
are ready. These would be the result of invoking any of the
|
|
|
|
|
signal handlers. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
if (invoke_async_signal_handlers ())
|
|
|
|
|
return 1;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* Look in the event queue to find an event that is ready
|
2010-12-29 01:58:14 +01:00
|
|
|
|
to be processed. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2013-01-25 15:17:10 +01:00
|
|
|
|
if (!QUEUE_is_empty (gdb_event_p, event_queue))
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
/* Let's get rid of the event from the event queue. We need to
|
2013-01-25 15:17:10 +01:00
|
|
|
|
do this now because while processing the event, the proc
|
|
|
|
|
function could end up calling 'error' and therefore jump out
|
|
|
|
|
to the caller of this function, gdb_do_one_event. In that
|
|
|
|
|
case, we would have on the event queue an event wich has been
|
|
|
|
|
processed, but not deleted. */
|
|
|
|
|
gdb_event *event_ptr = QUEUE_deque (gdb_event_p, event_queue);
|
|
|
|
|
/* Call the handler for the event. */
|
|
|
|
|
event_handler_func *proc = event_ptr->proc;
|
|
|
|
|
event_data data = event_ptr->data;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2013-01-25 15:17:10 +01:00
|
|
|
|
gdb_event_xfree (event_ptr);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Now call the procedure associated with the event. */
|
2008-10-24 21:33:39 +02:00
|
|
|
|
(*proc) (data);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* This is the case if there are no event on the event queue. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Process one high level event. If nothing is ready at this time,
|
|
|
|
|
wait for something to happen (via gdb_wait_for_event), then process
|
1999-11-09 02:23:30 +01:00
|
|
|
|
it. Returns >0 if something was done otherwise returns <0 (this
|
2011-08-04 22:09:46 +02:00
|
|
|
|
can happen if there are no event sources to wait for). */
|
1999-11-09 02:23:30 +01:00
|
|
|
|
|
2002-09-10 21:53:24 +02:00
|
|
|
|
int
|
2011-08-04 22:09:46 +02:00
|
|
|
|
gdb_do_one_event (void)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
static int event_source_head = 0;
|
|
|
|
|
const int number_of_sources = 3;
|
|
|
|
|
int current = 0;
|
|
|
|
|
|
|
|
|
|
/* Any events already waiting in the queue? */
|
1999-11-09 02:23:30 +01:00
|
|
|
|
if (process_event ())
|
2008-10-24 21:33:39 +02:00
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
/* To level the fairness across event sources, we poll them in a
|
|
|
|
|
round-robin fashion. */
|
|
|
|
|
for (current = 0; current < number_of_sources; current++)
|
1999-11-09 02:23:30 +01:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
switch (event_source_head)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
/* Are any timers that are ready? If so, put an event on the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
queue. */
|
2008-10-24 21:33:39 +02:00
|
|
|
|
poll_timers ();
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
/* Are there events already waiting to be collected on the
|
|
|
|
|
monitored file descriptors? */
|
|
|
|
|
gdb_wait_for_event (0);
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
/* Are there any asynchronous event handlers ready? */
|
|
|
|
|
check_async_event_handlers ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event_source_head++;
|
|
|
|
|
if (event_source_head == number_of_sources)
|
|
|
|
|
event_source_head = 0;
|
1999-11-09 02:23:30 +01:00
|
|
|
|
}
|
2000-03-23 04:48:13 +01:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Handle any new events collected. */
|
|
|
|
|
if (process_event ())
|
|
|
|
|
return 1;
|
2000-03-23 04:48:13 +01:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Block waiting for a new event. If gdb_wait_for_event returns -1,
|
|
|
|
|
we should get out because this means that there are no event
|
|
|
|
|
sources left. This will make the event loop stop, and the
|
|
|
|
|
application exit. */
|
2000-03-23 04:48:13 +01:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
if (gdb_wait_for_event (1) < 0)
|
|
|
|
|
return -1;
|
2000-03-23 04:48:13 +01:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Handle any new events occurred while waiting. */
|
1999-11-09 02:23:30 +01:00
|
|
|
|
if (process_event ())
|
2008-10-24 21:33:39 +02:00
|
|
|
|
return 1;
|
2000-03-23 04:48:13 +01:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* If gdb_wait_for_event has returned 1, it means that one event has
|
|
|
|
|
been handled. We break out of the loop. */
|
1999-11-09 02:23:30 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Start up the event loop. This is the entry point to the event loop
|
|
|
|
|
from the command loop. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
1999-11-09 02:23:30 +01:00
|
|
|
|
void
|
|
|
|
|
start_event_loop (void)
|
|
|
|
|
{
|
2011-08-04 22:09:46 +02:00
|
|
|
|
/* Loop until there is nothing to do. This is the entry point to
|
|
|
|
|
the event loop engine. gdb_do_one_event will process one event
|
|
|
|
|
for each invocation. It blocks waiting for an event and then
|
|
|
|
|
processes it. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
2011-08-04 22:09:46 +02:00
|
|
|
|
volatile struct gdb_exception ex;
|
|
|
|
|
int result = 0;
|
2002-09-30 23:25:47 +02:00
|
|
|
|
|
2011-08-04 22:09:46 +02:00
|
|
|
|
TRY_CATCH (ex, RETURN_MASK_ALL)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2011-08-04 22:09:46 +02:00
|
|
|
|
result = gdb_do_one_event ();
|
|
|
|
|
}
|
|
|
|
|
if (ex.reason < 0)
|
|
|
|
|
{
|
|
|
|
|
exception_print (gdb_stderr, ex);
|
|
|
|
|
|
2008-03-14 19:57:44 +01:00
|
|
|
|
/* If any exception escaped to here, we better enable
|
|
|
|
|
stdin. Otherwise, any command that calls async_disable_stdin,
|
|
|
|
|
and then throws, will leave stdin inoperable. */
|
2008-03-14 20:55:51 +01:00
|
|
|
|
async_enable_stdin ();
|
2011-08-04 22:09:46 +02:00
|
|
|
|
/* If we long-jumped out of do_one_event, we probably didn't
|
|
|
|
|
get around to resetting the prompt, which leaves readline
|
|
|
|
|
in a messed-up state. Reset it here. */
|
1999-06-28 18:06:02 +02:00
|
|
|
|
/* FIXME: this should really be a call to a hook that is
|
|
|
|
|
interface specific, because interfaces can display the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
prompt in their own way. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
display_gdb_prompt (0);
|
2001-11-27 05:15:09 +01:00
|
|
|
|
/* This call looks bizarre, but it is required. If the user
|
|
|
|
|
entered a command that caused an error,
|
|
|
|
|
after_char_processing_hook won't be called from
|
|
|
|
|
rl_callback_read_char_wrapper. Using a cleanup there
|
|
|
|
|
won't work, since we want this function to be called
|
|
|
|
|
after a new prompt is printed. */
|
|
|
|
|
if (after_char_processing_hook)
|
|
|
|
|
(*after_char_processing_hook) ();
|
1999-05-11 22:29:07 +02:00
|
|
|
|
/* Maybe better to set a flag to be checked somewhere as to
|
2010-12-29 01:58:14 +01:00
|
|
|
|
whether display the prompt or not. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
2011-08-04 22:09:46 +02:00
|
|
|
|
if (result < 0)
|
|
|
|
|
break;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
1999-06-28 18:06:02 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* We are done with the event loop. There are no more event sources
|
|
|
|
|
to listen to. So we exit GDB. */
|
1999-06-28 18:06:02 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
|
1999-06-28 18:06:02 +02:00
|
|
|
|
/* Wrapper function for create_file_handler, so that the caller
|
|
|
|
|
doesn't have to know implementation details about the use of poll
|
2010-12-29 01:58:14 +01:00
|
|
|
|
vs. select. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
void
|
1999-09-28 23:55:21 +02:00
|
|
|
|
add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
|
1999-06-28 18:06:02 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_POLL
|
2000-03-23 04:45:13 +01:00
|
|
|
|
struct pollfd fds;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_POLL
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Check to see if poll () is usable. If not, we'll switch to
|
|
|
|
|
use select. This can happen on systems like
|
2000-03-23 04:48:13 +01:00
|
|
|
|
m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
|
|
|
|
|
On m68k-motorola-sysv, tty's are not stream-based and not
|
2010-12-29 01:58:14 +01:00
|
|
|
|
`poll'able. */
|
2000-03-23 04:48:13 +01:00
|
|
|
|
fds.fd = fd;
|
|
|
|
|
fds.events = POLLIN;
|
|
|
|
|
if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
|
|
|
|
|
use_poll = 0;
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
|
|
|
|
}
|
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_POLL
|
|
|
|
|
create_file_handler (fd, POLLIN, proc, client_data);
|
1999-06-28 18:06:02 +02:00
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
1999-06-28 18:06:02 +02:00
|
|
|
|
#endif
|
2000-03-23 04:45:13 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
2010-12-29 01:58:14 +01:00
|
|
|
|
create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION,
|
|
|
|
|
proc, client_data);
|
1999-06-28 18:06:02 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
/* Add a file handler/descriptor to the list of descriptors we are
|
2010-12-29 01:58:14 +01:00
|
|
|
|
interested in.
|
|
|
|
|
|
|
|
|
|
FD is the file descriptor for the file/stream to be listened to.
|
|
|
|
|
|
|
|
|
|
For the poll case, MASK is a combination (OR) of POLLIN,
|
|
|
|
|
POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM, POLLWRBAND:
|
|
|
|
|
these are the events we are interested in. If any of them occurs,
|
|
|
|
|
proc should be called.
|
|
|
|
|
|
|
|
|
|
For the select case, MASK is a combination of READABLE, WRITABLE,
|
|
|
|
|
EXCEPTION. PROC is the procedure that will be called when an event
|
|
|
|
|
occurs for FD. CLIENT_DATA is the argument to pass to PROC. */
|
|
|
|
|
|
1999-06-28 18:06:02 +02:00
|
|
|
|
static void
|
2010-12-29 01:58:14 +01:00
|
|
|
|
create_file_handler (int fd, int mask, handler_func * proc,
|
|
|
|
|
gdb_client_data client_data)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
file_handler *file_ptr;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Do we already have a file handler for this file? (We may be
|
|
|
|
|
changing its associated procedure). */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
|
|
|
|
|
file_ptr = file_ptr->next_file)
|
|
|
|
|
{
|
|
|
|
|
if (file_ptr->fd == fd)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* It is a new file descriptor. Add it to the list. Otherwise, just
|
|
|
|
|
change the data associated with it. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (file_ptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
file_ptr = (file_handler *) xmalloc (sizeof (file_handler));
|
|
|
|
|
file_ptr->fd = fd;
|
|
|
|
|
file_ptr->ready_mask = 0;
|
|
|
|
|
file_ptr->next_file = gdb_notifier.first_file_handler;
|
|
|
|
|
gdb_notifier.first_file_handler = file_ptr;
|
|
|
|
|
|
2002-05-14 17:21:10 +02:00
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2002-05-14 17:21:10 +02:00
|
|
|
|
gdb_notifier.num_fds++;
|
|
|
|
|
if (gdb_notifier.poll_fds)
|
|
|
|
|
gdb_notifier.poll_fds =
|
|
|
|
|
(struct pollfd *) xrealloc (gdb_notifier.poll_fds,
|
|
|
|
|
(gdb_notifier.num_fds
|
|
|
|
|
* sizeof (struct pollfd)));
|
|
|
|
|
else
|
|
|
|
|
gdb_notifier.poll_fds =
|
|
|
|
|
(struct pollfd *) xmalloc (sizeof (struct pollfd));
|
|
|
|
|
(gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
|
|
|
|
|
(gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
|
|
|
|
|
(gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#else
|
2002-05-14 17:21:10 +02:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
2002-05-14 17:21:10 +02:00
|
|
|
|
}
|
2000-03-23 04:45:13 +01:00
|
|
|
|
else
|
2002-05-14 17:21:10 +02:00
|
|
|
|
{
|
|
|
|
|
if (mask & GDB_READABLE)
|
|
|
|
|
FD_SET (fd, &gdb_notifier.check_masks[0]);
|
|
|
|
|
else
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[0]);
|
|
|
|
|
|
|
|
|
|
if (mask & GDB_WRITABLE)
|
|
|
|
|
FD_SET (fd, &gdb_notifier.check_masks[1]);
|
|
|
|
|
else
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[1]);
|
|
|
|
|
|
|
|
|
|
if (mask & GDB_EXCEPTION)
|
|
|
|
|
FD_SET (fd, &gdb_notifier.check_masks[2]);
|
|
|
|
|
else
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[2]);
|
|
|
|
|
|
|
|
|
|
if (gdb_notifier.num_fds <= fd)
|
|
|
|
|
gdb_notifier.num_fds = fd + 1;
|
|
|
|
|
}
|
2000-03-23 04:45:13 +01:00
|
|
|
|
}
|
2002-05-14 17:21:10 +02:00
|
|
|
|
|
|
|
|
|
file_ptr->proc = proc;
|
|
|
|
|
file_ptr->client_data = client_data;
|
|
|
|
|
file_ptr->mask = mask;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove the file descriptor FD from the list of monitored fd's:
|
2010-12-29 01:58:14 +01:00
|
|
|
|
i.e. we don't care anymore about events on the FD. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
delete_file_handler (int fd)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
file_handler *file_ptr, *prev_ptr = NULL;
|
2000-03-20 20:59:38 +01:00
|
|
|
|
int i;
|
|
|
|
|
#ifdef HAVE_POLL
|
|
|
|
|
int j;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
struct pollfd *new_poll_fds;
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Find the entry for the given file. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
|
|
|
|
|
file_ptr = file_ptr->next_file)
|
|
|
|
|
{
|
|
|
|
|
if (file_ptr->fd == fd)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (file_ptr == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Create a new poll_fds array by copying every fd's information
|
|
|
|
|
but the one we want to get rid of. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
new_poll_fds = (struct pollfd *)
|
|
|
|
|
xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if ((gdb_notifier.poll_fds + i)->fd != fd)
|
|
|
|
|
{
|
|
|
|
|
(new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
|
|
|
|
|
(new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
|
2011-01-05 23:22:53 +01:00
|
|
|
|
(new_poll_fds + j)->revents
|
|
|
|
|
= (gdb_notifier.poll_fds + i)->revents;
|
2000-03-23 04:45:13 +01:00
|
|
|
|
j++;
|
|
|
|
|
}
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (gdb_notifier.poll_fds);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
gdb_notifier.poll_fds = new_poll_fds;
|
|
|
|
|
gdb_notifier.num_fds--;
|
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
2000-03-23 04:45:13 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (file_ptr->mask & GDB_READABLE)
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[0]);
|
|
|
|
|
if (file_ptr->mask & GDB_WRITABLE)
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[1]);
|
|
|
|
|
if (file_ptr->mask & GDB_EXCEPTION)
|
|
|
|
|
FD_CLR (fd, &gdb_notifier.check_masks[2]);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Find current max fd. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if ((fd + 1) == gdb_notifier.num_fds)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2000-03-23 04:45:13 +01:00
|
|
|
|
gdb_notifier.num_fds--;
|
|
|
|
|
for (i = gdb_notifier.num_fds; i; i--)
|
|
|
|
|
{
|
|
|
|
|
if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
|
|
|
|
|
|| FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
|
|
|
|
|
|| FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
gdb_notifier.num_fds = i;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-13 23:40:00 +02:00
|
|
|
|
/* Deactivate the file descriptor, by clearing its mask,
|
2010-12-29 01:58:14 +01:00
|
|
|
|
so that it will not fire again. */
|
1999-09-13 23:40:00 +02:00
|
|
|
|
|
|
|
|
|
file_ptr->mask = 0;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Get rid of the file handler in the file handler list. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (file_ptr == gdb_notifier.first_file_handler)
|
|
|
|
|
gdb_notifier.first_file_handler = file_ptr->next_file;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (prev_ptr = gdb_notifier.first_file_handler;
|
1999-06-21 15:27:42 +02:00
|
|
|
|
prev_ptr->next_file != file_ptr;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
prev_ptr = prev_ptr->next_file)
|
|
|
|
|
;
|
|
|
|
|
prev_ptr->next_file = file_ptr->next_file;
|
|
|
|
|
}
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (file_ptr);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle the given event by calling the procedure associated to the
|
|
|
|
|
corresponding file handler. Called by process_event indirectly,
|
|
|
|
|
through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
event in the front of the event queue. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
static void
|
2008-10-24 21:33:39 +02:00
|
|
|
|
handle_file_event (event_data data)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
file_handler *file_ptr;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
int mask;
|
|
|
|
|
#ifdef HAVE_POLL
|
|
|
|
|
int error_mask;
|
|
|
|
|
#endif
|
2008-10-24 21:33:39 +02:00
|
|
|
|
int event_file_desc = data.integer;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* Search the file handler list to find one that matches the fd in
|
2010-12-29 01:58:14 +01:00
|
|
|
|
the event. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
|
|
|
|
|
file_ptr = file_ptr->next_file)
|
|
|
|
|
{
|
|
|
|
|
if (file_ptr->fd == event_file_desc)
|
|
|
|
|
{
|
|
|
|
|
/* With poll, the ready_mask could have any of three events
|
2010-12-29 01:58:14 +01:00
|
|
|
|
set to 1: POLLHUP, POLLERR, POLLNVAL. These events
|
|
|
|
|
cannot be used in the requested event mask (events), but
|
|
|
|
|
they can be returned in the return mask (revents). We
|
|
|
|
|
need to check for those event too, and add them to the
|
|
|
|
|
mask which will be passed to the handler. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* See if the desired events (mask) match the received
|
2010-12-29 01:58:14 +01:00
|
|
|
|
events (ready_mask). */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (use_poll)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#ifdef HAVE_POLL
|
2011-05-25 09:59:04 +02:00
|
|
|
|
/* POLLHUP means EOF, but can be combined with POLLIN to
|
|
|
|
|
signal more data to read. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
error_mask = POLLHUP | POLLERR | POLLNVAL;
|
2011-05-25 09:59:04 +02:00
|
|
|
|
mask = file_ptr->ready_mask & (file_ptr->mask | error_mask);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
|
2011-05-25 09:59:04 +02:00
|
|
|
|
if ((mask & (POLLERR | POLLNVAL)) != 0)
|
2000-03-23 04:45:13 +01:00
|
|
|
|
{
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Work in progress. We may need to tell somebody
|
|
|
|
|
what kind of error we had. */
|
2011-05-25 09:59:04 +02:00
|
|
|
|
if (mask & POLLERR)
|
2011-01-05 23:22:53 +01:00
|
|
|
|
printf_unfiltered (_("Error detected on fd %d\n"),
|
|
|
|
|
file_ptr->fd);
|
2011-05-25 09:59:04 +02:00
|
|
|
|
if (mask & POLLNVAL)
|
2011-01-05 23:22:53 +01:00
|
|
|
|
printf_unfiltered (_("Invalid or non-`poll'able fd %d\n"),
|
|
|
|
|
file_ptr->fd);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
file_ptr->error = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
file_ptr->error = 0;
|
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
1999-09-28 23:55:21 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (file_ptr->ready_mask & GDB_EXCEPTION)
|
|
|
|
|
{
|
2011-01-05 23:22:53 +01:00
|
|
|
|
printf_unfiltered (_("Exception condition detected "
|
|
|
|
|
"on fd %d\n"), file_ptr->fd);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
file_ptr->error = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
file_ptr->error = 0;
|
|
|
|
|
mask = file_ptr->ready_mask & file_ptr->mask;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Clear the received events for next time around. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
file_ptr->ready_mask = 0;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* If there was a match, then call the handler. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (mask != 0)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
(*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Called by gdb_do_one_event to wait for new events on the monitored
|
|
|
|
|
file descriptors. Queue file events as they are detected by the
|
|
|
|
|
poll. If BLOCK and if there are no events, this function will
|
2010-12-29 01:58:14 +01:00
|
|
|
|
block in the call to poll. Return -1 if there are no file
|
|
|
|
|
descriptors to monitor, otherwise return 0. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
static int
|
2008-10-24 21:33:39 +02:00
|
|
|
|
gdb_wait_for_event (int block)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
file_handler *file_ptr;
|
|
|
|
|
gdb_event *file_event_ptr;
|
1999-06-14 20:08:47 +02:00
|
|
|
|
int num_found = 0;
|
|
|
|
|
int i;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Make sure all output is done before getting another event. */
|
1999-08-16 21:57:19 +02:00
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
gdb_flush (gdb_stderr);
|
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (gdb_notifier.num_fds == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2008-10-24 21:33:39 +02:00
|
|
|
|
int timeout;
|
|
|
|
|
|
|
|
|
|
if (block)
|
|
|
|
|
timeout = gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1;
|
|
|
|
|
else
|
|
|
|
|
timeout = 0;
|
|
|
|
|
|
|
|
|
|
num_found = poll (gdb_notifier.poll_fds,
|
|
|
|
|
(unsigned long) gdb_notifier.num_fds, timeout);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
|
|
|
|
|
/* Don't print anything if we get out of poll because of a
|
2008-10-24 21:33:39 +02:00
|
|
|
|
signal. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (num_found == -1 && errno != EINTR)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("poll"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
|
|
|
|
}
|
|
|
|
|
else
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
struct timeval select_timeout;
|
|
|
|
|
struct timeval *timeout_p;
|
2010-05-14 20:35:11 +02:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
if (block)
|
|
|
|
|
timeout_p = gdb_notifier.timeout_valid
|
|
|
|
|
? &gdb_notifier.select_timeout : NULL;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
memset (&select_timeout, 0, sizeof (select_timeout));
|
|
|
|
|
timeout_p = &select_timeout;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
|
|
|
|
|
gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
|
|
|
|
|
gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
|
2005-04-25 23:45:56 +02:00
|
|
|
|
num_found = gdb_select (gdb_notifier.num_fds,
|
|
|
|
|
&gdb_notifier.ready_masks[0],
|
|
|
|
|
&gdb_notifier.ready_masks[1],
|
|
|
|
|
&gdb_notifier.ready_masks[2],
|
2008-10-24 21:33:39 +02:00
|
|
|
|
timeout_p);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Clear the masks after an error from select. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (num_found == -1)
|
|
|
|
|
{
|
|
|
|
|
FD_ZERO (&gdb_notifier.ready_masks[0]);
|
|
|
|
|
FD_ZERO (&gdb_notifier.ready_masks[1]);
|
|
|
|
|
FD_ZERO (&gdb_notifier.ready_masks[2]);
|
2008-10-24 21:33:39 +02:00
|
|
|
|
|
|
|
|
|
/* Dont print anything if we got a signal, let gdb handle
|
|
|
|
|
it. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (errno != EINTR)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("select"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
}
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Enqueue all detected file events. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
1999-05-11 22:29:07 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2000-03-23 04:45:13 +01:00
|
|
|
|
for (i = 0; (i < gdb_notifier.num_fds) && (num_found > 0); i++)
|
|
|
|
|
{
|
|
|
|
|
if ((gdb_notifier.poll_fds + i)->revents)
|
|
|
|
|
num_found--;
|
|
|
|
|
else
|
|
|
|
|
continue;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2000-03-23 04:45:13 +01:00
|
|
|
|
for (file_ptr = gdb_notifier.first_file_handler;
|
|
|
|
|
file_ptr != NULL;
|
|
|
|
|
file_ptr = file_ptr->next_file)
|
|
|
|
|
{
|
|
|
|
|
if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (file_ptr)
|
|
|
|
|
{
|
|
|
|
|
/* Enqueue an event only if this is still a new event for
|
2010-12-29 01:58:14 +01:00
|
|
|
|
this fd. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (file_ptr->ready_mask == 0)
|
|
|
|
|
{
|
|
|
|
|
file_event_ptr = create_file_event (file_ptr->fd);
|
2013-01-25 15:17:10 +01:00
|
|
|
|
QUEUE_enque (gdb_event_p, event_queue, file_event_ptr);
|
2000-03-23 04:45:13 +01:00
|
|
|
|
}
|
2007-08-16 16:51:22 +02:00
|
|
|
|
file_ptr->ready_mask = (gdb_notifier.poll_fds + i)->revents;
|
2000-03-23 04:45:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-05-11 22:29:07 +02:00
|
|
|
|
for (file_ptr = gdb_notifier.first_file_handler;
|
2000-03-23 04:45:13 +01:00
|
|
|
|
(file_ptr != NULL) && (num_found > 0);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
file_ptr = file_ptr->next_file)
|
|
|
|
|
{
|
2000-03-23 04:45:13 +01:00
|
|
|
|
int mask = 0;
|
|
|
|
|
|
|
|
|
|
if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
|
|
|
|
|
mask |= GDB_READABLE;
|
|
|
|
|
if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
|
|
|
|
|
mask |= GDB_WRITABLE;
|
|
|
|
|
if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
|
|
|
|
|
mask |= GDB_EXCEPTION;
|
|
|
|
|
|
|
|
|
|
if (!mask)
|
|
|
|
|
continue;
|
|
|
|
|
else
|
|
|
|
|
num_found--;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
/* Enqueue an event only if this is still a new event for
|
2010-12-29 01:58:14 +01:00
|
|
|
|
this fd. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (file_ptr->ready_mask == 0)
|
|
|
|
|
{
|
1999-09-13 23:40:00 +02:00
|
|
|
|
file_event_ptr = create_file_event (file_ptr->fd);
|
2013-01-25 15:17:10 +01:00
|
|
|
|
QUEUE_enque (gdb_event_p, event_queue, file_event_ptr);
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
2000-03-23 04:45:13 +01:00
|
|
|
|
file_ptr->ready_mask = mask;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Create an asynchronous handler, allocating memory for it.
|
1999-05-11 22:29:07 +02:00
|
|
|
|
Return a pointer to the newly created handler.
|
|
|
|
|
This pointer will be used to invoke the handler by
|
|
|
|
|
invoke_async_signal_handler.
|
|
|
|
|
PROC is the function to call with CLIENT_DATA argument
|
2010-12-29 01:58:14 +01:00
|
|
|
|
whenever the handler is invoked. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
async_signal_handler *
|
2011-01-05 23:22:53 +01:00
|
|
|
|
create_async_signal_handler (sig_handler_func * proc,
|
|
|
|
|
gdb_client_data client_data)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
async_signal_handler *async_handler_ptr;
|
|
|
|
|
|
|
|
|
|
async_handler_ptr =
|
|
|
|
|
(async_signal_handler *) xmalloc (sizeof (async_signal_handler));
|
|
|
|
|
async_handler_ptr->ready = 0;
|
|
|
|
|
async_handler_ptr->next_handler = NULL;
|
|
|
|
|
async_handler_ptr->proc = proc;
|
|
|
|
|
async_handler_ptr->client_data = client_data;
|
|
|
|
|
if (sighandler_list.first_handler == NULL)
|
|
|
|
|
sighandler_list.first_handler = async_handler_ptr;
|
|
|
|
|
else
|
|
|
|
|
sighandler_list.last_handler->next_handler = async_handler_ptr;
|
|
|
|
|
sighandler_list.last_handler = async_handler_ptr;
|
|
|
|
|
return async_handler_ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-05 18:21:10 +01:00
|
|
|
|
/* Call the handler from HANDLER immediately. This function runs
|
|
|
|
|
signal handlers when returning to the event loop would be too
|
|
|
|
|
slow. */
|
|
|
|
|
void
|
|
|
|
|
call_async_signal_handler (struct async_signal_handler *handler)
|
|
|
|
|
{
|
|
|
|
|
(*handler->proc) (handler->client_data);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
|
|
|
|
|
will be used when the handlers are invoked, after we have waited
|
|
|
|
|
for some event. The caller of this function is the interrupt
|
|
|
|
|
handler associated with a signal. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
void
|
1999-09-28 23:55:21 +02:00
|
|
|
|
mark_async_signal_handler (async_signal_handler * async_handler_ptr)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
async_handler_ptr->ready = 1;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Call all the handlers that are ready. Returns true if any was
|
|
|
|
|
indeed ready. */
|
|
|
|
|
static int
|
|
|
|
|
invoke_async_signal_handlers (void)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
async_signal_handler *async_handler_ptr;
|
2008-10-24 21:33:39 +02:00
|
|
|
|
int any_ready = 0;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Invoke ready handlers. */
|
1999-05-11 22:29:07 +02:00
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
for (async_handler_ptr = sighandler_list.first_handler;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
async_handler_ptr != NULL;
|
|
|
|
|
async_handler_ptr = async_handler_ptr->next_handler)
|
|
|
|
|
{
|
|
|
|
|
if (async_handler_ptr->ready)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (async_handler_ptr == NULL)
|
|
|
|
|
break;
|
2008-10-24 21:33:39 +02:00
|
|
|
|
any_ready = 1;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
async_handler_ptr->ready = 0;
|
|
|
|
|
(*async_handler_ptr->proc) (async_handler_ptr->client_data);
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
return any_ready;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
|
1999-05-11 22:29:07 +02:00
|
|
|
|
Free the space allocated for it. */
|
|
|
|
|
void
|
1999-09-28 23:55:21 +02:00
|
|
|
|
delete_async_signal_handler (async_signal_handler ** async_handler_ptr)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
|
|
|
|
async_signal_handler *prev_ptr;
|
|
|
|
|
|
1999-07-05 19:58:44 +02:00
|
|
|
|
if (sighandler_list.first_handler == (*async_handler_ptr))
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
1999-07-05 19:58:44 +02:00
|
|
|
|
sighandler_list.first_handler = (*async_handler_ptr)->next_handler;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
if (sighandler_list.first_handler == NULL)
|
|
|
|
|
sighandler_list.last_handler = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
prev_ptr = sighandler_list.first_handler;
|
2007-08-18 22:05:48 +02:00
|
|
|
|
while (prev_ptr && prev_ptr->next_handler != (*async_handler_ptr))
|
1999-05-11 22:29:07 +02:00
|
|
|
|
prev_ptr = prev_ptr->next_handler;
|
2011-03-11 23:31:44 +01:00
|
|
|
|
gdb_assert (prev_ptr);
|
1999-07-05 19:58:44 +02:00
|
|
|
|
prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
|
|
|
|
|
if (sighandler_list.last_handler == (*async_handler_ptr))
|
1999-05-11 22:29:07 +02:00
|
|
|
|
sighandler_list.last_handler = prev_ptr;
|
|
|
|
|
}
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree ((*async_handler_ptr));
|
1999-07-05 19:58:44 +02:00
|
|
|
|
(*async_handler_ptr) = NULL;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-24 21:33:39 +02:00
|
|
|
|
/* Create an asynchronous event handler, allocating memory for it.
|
|
|
|
|
Return a pointer to the newly created handler. PROC is the
|
|
|
|
|
function to call with CLIENT_DATA argument whenever the handler is
|
|
|
|
|
invoked. */
|
|
|
|
|
async_event_handler *
|
|
|
|
|
create_async_event_handler (async_event_handler_func *proc,
|
|
|
|
|
gdb_client_data client_data)
|
|
|
|
|
{
|
|
|
|
|
async_event_handler *h;
|
|
|
|
|
|
|
|
|
|
h = xmalloc (sizeof (*h));
|
|
|
|
|
h->ready = 0;
|
|
|
|
|
h->next_handler = NULL;
|
|
|
|
|
h->proc = proc;
|
|
|
|
|
h->client_data = client_data;
|
|
|
|
|
if (async_event_handler_list.first_handler == NULL)
|
|
|
|
|
async_event_handler_list.first_handler = h;
|
|
|
|
|
else
|
|
|
|
|
async_event_handler_list.last_handler->next_handler = h;
|
|
|
|
|
async_event_handler_list.last_handler = h;
|
|
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
|
|
|
|
|
will be used by gdb_do_one_event. The caller will be whoever
|
|
|
|
|
created the event source, and wants to signal that the event is
|
|
|
|
|
ready to be handled. */
|
|
|
|
|
void
|
|
|
|
|
mark_async_event_handler (async_event_handler *async_handler_ptr)
|
|
|
|
|
{
|
|
|
|
|
async_handler_ptr->ready = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct async_event_handler_data
|
|
|
|
|
{
|
|
|
|
|
async_event_handler_func* proc;
|
|
|
|
|
gdb_client_data client_data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
invoke_async_event_handler (event_data data)
|
|
|
|
|
{
|
|
|
|
|
struct async_event_handler_data *hdata = data.ptr;
|
|
|
|
|
async_event_handler_func* proc = hdata->proc;
|
|
|
|
|
gdb_client_data client_data = hdata->client_data;
|
|
|
|
|
|
|
|
|
|
xfree (hdata);
|
|
|
|
|
(*proc) (client_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if any asynchronous event handlers are ready, and queue
|
|
|
|
|
events in the ready queue for any that are. */
|
|
|
|
|
static void
|
|
|
|
|
check_async_event_handlers (void)
|
|
|
|
|
{
|
|
|
|
|
async_event_handler *async_handler_ptr;
|
|
|
|
|
struct async_event_handler_data *hdata;
|
|
|
|
|
struct gdb_event *event_ptr;
|
|
|
|
|
event_data data;
|
|
|
|
|
|
|
|
|
|
for (async_handler_ptr = async_event_handler_list.first_handler;
|
|
|
|
|
async_handler_ptr != NULL;
|
|
|
|
|
async_handler_ptr = async_handler_ptr->next_handler)
|
|
|
|
|
{
|
|
|
|
|
if (async_handler_ptr->ready)
|
|
|
|
|
{
|
|
|
|
|
async_handler_ptr->ready = 0;
|
|
|
|
|
|
|
|
|
|
hdata = xmalloc (sizeof (*hdata));
|
|
|
|
|
|
|
|
|
|
hdata->proc = async_handler_ptr->proc;
|
|
|
|
|
hdata->client_data = async_handler_ptr->client_data;
|
|
|
|
|
|
|
|
|
|
data.ptr = hdata;
|
|
|
|
|
|
|
|
|
|
event_ptr = create_event (invoke_async_event_handler, data);
|
2013-01-25 15:17:10 +01:00
|
|
|
|
QUEUE_enque (gdb_event_p, event_queue, event_ptr);
|
2008-10-24 21:33:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
|
|
|
|
|
Free the space allocated for it. */
|
|
|
|
|
void
|
|
|
|
|
delete_async_event_handler (async_event_handler **async_handler_ptr)
|
1999-05-11 22:29:07 +02:00
|
|
|
|
{
|
2008-10-24 21:33:39 +02:00
|
|
|
|
async_event_handler *prev_ptr;
|
|
|
|
|
|
|
|
|
|
if (async_event_handler_list.first_handler == *async_handler_ptr)
|
|
|
|
|
{
|
2011-01-05 23:22:53 +01:00
|
|
|
|
async_event_handler_list.first_handler
|
|
|
|
|
= (*async_handler_ptr)->next_handler;
|
2008-10-24 21:33:39 +02:00
|
|
|
|
if (async_event_handler_list.first_handler == NULL)
|
|
|
|
|
async_event_handler_list.last_handler = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
prev_ptr = async_event_handler_list.first_handler;
|
|
|
|
|
while (prev_ptr && prev_ptr->next_handler != *async_handler_ptr)
|
|
|
|
|
prev_ptr = prev_ptr->next_handler;
|
2011-03-11 23:31:44 +01:00
|
|
|
|
gdb_assert (prev_ptr);
|
2008-10-24 21:33:39 +02:00
|
|
|
|
prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
|
|
|
|
|
if (async_event_handler_list.last_handler == (*async_handler_ptr))
|
|
|
|
|
async_event_handler_list.last_handler = prev_ptr;
|
|
|
|
|
}
|
|
|
|
|
xfree (*async_handler_ptr);
|
|
|
|
|
*async_handler_ptr = NULL;
|
1999-05-11 22:29:07 +02:00
|
|
|
|
}
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Create a timer that will expire in MILLISECONDS from now. When the
|
|
|
|
|
timer is ready, PROC will be executed. At creation, the timer is
|
1999-09-22 05:28:34 +02:00
|
|
|
|
aded to the timers queue. This queue is kept sorted in order of
|
2010-12-29 01:58:14 +01:00
|
|
|
|
increasing timers. Return a handle to the timer struct. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
int
|
2010-12-29 01:58:14 +01:00
|
|
|
|
create_timer (int milliseconds, timer_handler_func * proc,
|
|
|
|
|
gdb_client_data client_data)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
|
|
|
|
|
struct timeval time_now, delta;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Compute seconds. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
delta.tv_sec = milliseconds / 1000;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Compute microseconds. */
|
1999-09-28 23:55:21 +02:00
|
|
|
|
delta.tv_usec = (milliseconds % 1000) * 1000;
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
gettimeofday (&time_now, NULL);
|
|
|
|
|
|
2010-05-03 22:58:21 +02:00
|
|
|
|
timer_ptr = (struct gdb_timer *) xmalloc (sizeof (*timer_ptr));
|
1999-09-22 05:28:34 +02:00
|
|
|
|
timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec;
|
|
|
|
|
timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Carry? */
|
1999-09-28 23:55:21 +02:00
|
|
|
|
if (timer_ptr->when.tv_usec >= 1000000)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
timer_ptr->when.tv_sec += 1;
|
|
|
|
|
timer_ptr->when.tv_usec -= 1000000;
|
|
|
|
|
}
|
|
|
|
|
timer_ptr->proc = proc;
|
|
|
|
|
timer_ptr->client_data = client_data;
|
1999-09-28 23:55:21 +02:00
|
|
|
|
timer_list.num_timers++;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
timer_ptr->timer_id = timer_list.num_timers;
|
|
|
|
|
|
|
|
|
|
/* Now add the timer to the timer queue, making sure it is sorted in
|
2010-12-29 01:58:14 +01:00
|
|
|
|
increasing order of expiration. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-09-28 23:55:21 +02:00
|
|
|
|
for (timer_index = timer_list.first_timer;
|
|
|
|
|
timer_index != NULL;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
timer_index = timer_index->next)
|
|
|
|
|
{
|
|
|
|
|
/* If the seconds field is greater or if it is the same, but the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
microsecond field is greater. */
|
2009-10-07 01:27:05 +02:00
|
|
|
|
if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec)
|
|
|
|
|
|| ((timer_index->when.tv_sec == timer_ptr->when.tv_sec)
|
|
|
|
|
&& (timer_index->when.tv_usec > timer_ptr->when.tv_usec)))
|
1999-09-22 05:28:34 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
if (timer_index == timer_list.first_timer)
|
|
|
|
|
{
|
|
|
|
|
timer_ptr->next = timer_list.first_timer;
|
|
|
|
|
timer_list.first_timer = timer_ptr;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-09-28 23:55:21 +02:00
|
|
|
|
for (prev_timer = timer_list.first_timer;
|
|
|
|
|
prev_timer->next != timer_index;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
prev_timer = prev_timer->next)
|
|
|
|
|
;
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
prev_timer->next = timer_ptr;
|
|
|
|
|
timer_ptr->next = timer_index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gdb_notifier.timeout_valid = 0;
|
|
|
|
|
return timer_ptr->timer_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* There is a chance that the creator of the timer wants to get rid of
|
2010-12-29 01:58:14 +01:00
|
|
|
|
it before it expires. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
void
|
|
|
|
|
delete_timer (int id)
|
|
|
|
|
{
|
|
|
|
|
struct gdb_timer *timer_ptr, *prev_timer = NULL;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Find the entry for the given timer. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
|
|
|
|
|
timer_ptr = timer_ptr->next)
|
|
|
|
|
{
|
|
|
|
|
if (timer_ptr->timer_id == id)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timer_ptr == NULL)
|
|
|
|
|
return;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Get rid of the timer in the timer list. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
if (timer_ptr == timer_list.first_timer)
|
|
|
|
|
timer_list.first_timer = timer_ptr->next;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (prev_timer = timer_list.first_timer;
|
|
|
|
|
prev_timer->next != timer_ptr;
|
|
|
|
|
prev_timer = prev_timer->next)
|
|
|
|
|
;
|
|
|
|
|
prev_timer->next = timer_ptr->next;
|
|
|
|
|
}
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (timer_ptr);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
gdb_notifier.timeout_valid = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* When a timer event is put on the event queue, it will be handled by
|
2008-10-24 21:33:39 +02:00
|
|
|
|
this function. Just call the associated procedure and delete the
|
|
|
|
|
timer event from the event queue. Repeat this for each timer that
|
|
|
|
|
has expired. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static void
|
2008-10-24 21:33:39 +02:00
|
|
|
|
handle_timer_event (event_data dummy)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
struct timeval time_now;
|
|
|
|
|
struct gdb_timer *timer_ptr, *saved_timer;
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
gettimeofday (&time_now, NULL);
|
|
|
|
|
timer_ptr = timer_list.first_timer;
|
|
|
|
|
|
|
|
|
|
while (timer_ptr != NULL)
|
|
|
|
|
{
|
2009-10-07 01:27:05 +02:00
|
|
|
|
if ((timer_ptr->when.tv_sec > time_now.tv_sec)
|
|
|
|
|
|| ((timer_ptr->when.tv_sec == time_now.tv_sec)
|
|
|
|
|
&& (timer_ptr->when.tv_usec > time_now.tv_usec)))
|
1999-09-22 05:28:34 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Get rid of the timer from the beginning of the list. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
timer_list.first_timer = timer_ptr->next;
|
|
|
|
|
saved_timer = timer_ptr;
|
|
|
|
|
timer_ptr = timer_ptr->next;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Call the procedure associated with that timer. */
|
1999-12-14 02:06:04 +01:00
|
|
|
|
(*saved_timer->proc) (saved_timer->client_data);
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (saved_timer);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gdb_notifier.timeout_valid = 0;
|
|
|
|
|
}
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Check whether any timers in the timers queue are ready. If at least
|
1999-09-22 05:28:34 +02:00
|
|
|
|
one timer is ready, stick an event onto the event queue. Even in
|
|
|
|
|
case more than one timer is ready, one event is enough, because the
|
|
|
|
|
handle_timer_event() will go through the timers list and call the
|
2010-12-29 01:58:14 +01:00
|
|
|
|
procedures associated with all that have expired.l Update the
|
|
|
|
|
timeout for the select() or poll() as well. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static void
|
|
|
|
|
poll_timers (void)
|
|
|
|
|
{
|
|
|
|
|
struct timeval time_now, delta;
|
|
|
|
|
gdb_event *event_ptr;
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
if (timer_list.first_timer != NULL)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
gettimeofday (&time_now, NULL);
|
|
|
|
|
delta.tv_sec = timer_list.first_timer->when.tv_sec - time_now.tv_sec;
|
|
|
|
|
delta.tv_usec = timer_list.first_timer->when.tv_usec - time_now.tv_usec;
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Borrow? */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
if (delta.tv_usec < 0)
|
|
|
|
|
{
|
|
|
|
|
delta.tv_sec -= 1;
|
|
|
|
|
delta.tv_usec += 1000000;
|
|
|
|
|
}
|
1999-09-28 23:55:21 +02:00
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Oops it expired already. Tell select / poll to return
|
|
|
|
|
immediately. (Cannot simply test if delta.tv_sec is negative
|
2000-03-23 04:48:13 +01:00
|
|
|
|
because time_t might be unsigned.) */
|
2000-03-06 18:07:03 +01:00
|
|
|
|
if (timer_list.first_timer->when.tv_sec < time_now.tv_sec
|
|
|
|
|
|| (timer_list.first_timer->when.tv_sec == time_now.tv_sec
|
|
|
|
|
&& timer_list.first_timer->when.tv_usec < time_now.tv_usec))
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
delta.tv_sec = 0;
|
|
|
|
|
delta.tv_usec = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (delta.tv_sec == 0 && delta.tv_usec == 0)
|
|
|
|
|
{
|
|
|
|
|
event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
|
|
|
|
|
event_ptr->proc = handle_timer_event;
|
2008-10-24 21:33:39 +02:00
|
|
|
|
event_ptr->data.integer = timer_list.first_timer->timer_id;
|
2013-01-25 15:17:10 +01:00
|
|
|
|
QUEUE_enque (gdb_event_p, event_queue, event_ptr);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 01:58:14 +01:00
|
|
|
|
/* Now we need to update the timeout for select/ poll, because
|
|
|
|
|
we don't want to sit there while this timer is expiring. */
|
2000-03-23 04:45:13 +01:00
|
|
|
|
if (use_poll)
|
|
|
|
|
{
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#ifdef HAVE_POLL
|
2000-03-23 04:45:13 +01:00
|
|
|
|
gdb_notifier.poll_timeout = delta.tv_sec * 1000;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#else
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
_("use_poll without HAVE_POLL"));
|
2000-03-23 04:45:13 +01:00
|
|
|
|
#endif /* HAVE_POLL */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gdb_notifier.select_timeout.tv_sec = delta.tv_sec;
|
|
|
|
|
gdb_notifier.select_timeout.tv_usec = delta.tv_usec;
|
|
|
|
|
}
|
1999-09-22 05:28:34 +02:00
|
|
|
|
gdb_notifier.timeout_valid = 1;
|
|
|
|
|
}
|
1999-09-28 23:55:21 +02:00
|
|
|
|
else
|
1999-09-22 05:28:34 +02:00
|
|
|
|
gdb_notifier.timeout_valid = 0;
|
|
|
|
|
}
|