diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-08 15:51:06 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-11-26 14:02:57 -0700 |
commit | 9411c49ecc09df989ecddb05e1756e0a9da0d1c8 (patch) | |
tree | 4dd8b5100ccc851fddfcdf95062dd5a6b4578aa6 /gdb/Makefile.in | |
parent | c3efb9654847822620010922cb7ea61e8901479c (diff) | |
download | gdb-9411c49ecc09df989ecddb05e1756e0a9da0d1c8.zip gdb-9411c49ecc09df989ecddb05e1756e0a9da0d1c8.tar.gz gdb-9411c49ecc09df989ecddb05e1756e0a9da0d1c8.tar.bz2 |
Introduce run_on_main_thread
This introduces a way for a callback to be run on the main thread.
gdb/ChangeLog
2019-11-26 Tom Tromey <tom@tromey.com>
* run-on-main-thread.c: New file.
* run-on-main-thread.h: New file.
* unittests/main-thread-selftests.c: New file.
* Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
main-thread-selftests.c.
(HFILES_NO_SRCDIR): Add run-on-main-thread.h.
(COMMON_SFILES): Add run-on-main-thread.c.
Change-Id: I16ef82f0564e9f8a524bdc64cb31df79a988ad9f
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8d248ae..c487b10 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -433,6 +433,7 @@ SUBDIR_UNITTESTS_SRCS = \ unittests/optional-selftests.c \ unittests/parse-connection-spec-selftests.c \ unittests/ptid-selftests.c \ + unittests/main-thread-selftests.c \ unittests/mkdir-recursive-selftests.c \ unittests/rsp-low-selftests.c \ unittests/scoped_fd-selftests.c \ @@ -1116,6 +1117,7 @@ COMMON_SFILES = \ remote-fileio.c \ remote-notif.c \ reverse.c \ + run-on-main-thread.c \ rust-lang.c \ sentinel-frame.c \ ser-event.c \ @@ -1378,6 +1380,7 @@ HFILES_NO_SRCDIR = \ riscv-tdep.h \ rs6000-aix-tdep.h \ rs6000-tdep.h \ + run-on-main-thread.h \ s390-linux-tdep.h \ s390-tdep.h \ score-tdep.h \ |