diff options
author | Keith Seitz <keiths@redhat.com> | 2006-06-21 20:56:37 +0000 |
---|---|---|
committer | Keith Seitz <kseitz@gcc.gnu.org> | 2006-06-21 20:56:37 +0000 |
commit | 7691d0d3c9d60eb732e71be4c7a100ef2bb2ef82 (patch) | |
tree | 55fd808e47f53739af4e710b68299196cc64643e /boehm-gc/ChangeLog | |
parent | c3238e32eb1c51e9cb8d75f5b3266bf3c831112f (diff) | |
download | gcc-7691d0d3c9d60eb732e71be4c7a100ef2bb2ef82.tar.gz |
pthread_stop_world.c (GC_suspend_handler): Redirect to suspension routine if signal is received and thread is flagged...
* pthread_stop_world.c (GC_suspend_handler): Redirect to suspension
routine if signal is received and thread is flagged SUSPENDED.
(suspend_self): New function.
(GC_suspend_thread): New function.
(GC_resume_thread): New function.
* include/gc.h (GC_suspend_thread): Declare.
(GC_resumet_thread): Declare.
* include/private/pthread_support.h (SUSPENDED): New GC_thread
flag.
From-SVN: r114869
Diffstat (limited to 'boehm-gc/ChangeLog')
-rw-r--r-- | boehm-gc/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index ca5f33ce613..6e2b3a86112 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,15 @@ +2006-06-21 Keith Seitz <keiths@redhat.com> + + * pthread_stop_world.c (GC_suspend_handler): Redirect to suspension + routine if signal is received and thread is flagged SUSPENDED. + (suspend_self): New function. + (GC_suspend_thread): New function. + (GC_resume_thread): New function. + * include/gc.h (GC_suspend_thread): Declare. + (GC_resumet_thread): Declare. + * include/private/pthread_support.h (SUSPENDED): New GC_thread + flag. + 2006-06-20 Ranjit Mathew <rmathew@gcc.gnu.org> Backport Windows 9x/ME VirtualQuery() fix from GC 6.7. |