diff options
author | Jonathan Larmour <jifl@eCosCentric.com> | 2001-06-06 16:31:32 +0000 |
---|---|---|
committer | Jonathan Larmour <jifl@eCosCentric.com> | 2001-06-06 16:31:32 +0000 |
commit | ac89f65a370ad5d9a74c354bc57d0ba346d8d690 (patch) | |
tree | dce0ad2695b2e538dbbc8294d7ac53e44ff7bb52 /gdb/lin-lwp.c | |
parent | 377313a3c8694a9e2537a2b3ab8b36a21676c353 (diff) | |
download | gdb-ac89f65a370ad5d9a74c354bc57d0ba346d8d690.tar.gz |
* arch-utils.c (generic_prepare_to_proceed): Allow for having
stopped due to a Ctrl-C as well as breakpoints.
* hppa-tdep.c (hppa_prepare_to_proceed): Add FIXME as this may not
support thread switches after Ctrl-C.
* lin-lwp.c (lin_lwp_prepare_to_proceed): Ditto.
* linux-thread.c (linuxthreads_prepare_to_proceed): Ditto.
* m3-nat.c (mach3_prepare_to_proceed): Ditto.
Diffstat (limited to 'gdb/lin-lwp.c')
-rw-r--r-- | gdb/lin-lwp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/lin-lwp.c b/gdb/lin-lwp.c index 280936ec22e..0948a543161 100644 --- a/gdb/lin-lwp.c +++ b/gdb/lin-lwp.c @@ -263,7 +263,10 @@ iterate_over_lwps (int (*callback) (struct lwp_info *, void *), void *data) layer. Note that this implementation is potentially redundant now that - default_prepare_to_proceed() has been added. */ + default_prepare_to_proceed() has been added. + + FIXME This may not support switching threads after Ctrl-C + correctly. The default implementation does support this. */ int lin_lwp_prepare_to_proceed (void) |