diff options
| author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-23 02:23:27 +0000 |
|---|---|---|
| committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-23 02:23:27 +0000 |
| commit | 00a3cf461459607fe2cb4b5322d7072d665f46dc (patch) | |
| tree | bf1998989a2823f4930889adc41a657e1eb1d59b | |
| parent | 1e7b13d6186075af732fcb748fa0d470b34b0d91 (diff) | |
| download | ppe42-gcc-00a3cf461459607fe2cb4b5322d7072d665f46dc.tar.gz ppe42-gcc-00a3cf461459607fe2cb4b5322d7072d665f46dc.zip | |
2000-12-23 Hans Boehm <Hans_Boehm@hp.com>
* gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38476 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | boehm-gc/ChangeLog | 4 | ||||
| -rw-r--r-- | boehm-gc/gcj_mlc.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 4e20673451d..eb91029ea62 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2000-12-23 Hans Boehm <Hans_Boehm@hp.com> + + * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice. + 2000-12-15 Bryce McKinlay <bryce@albatross.co.nz> * Makefile.dist: Renamed from Makefile.orig. diff --git a/boehm-gc/gcj_mlc.c b/boehm-gc/gcj_mlc.c index eb67eac1f36..d7b912c5a9b 100644 --- a/boehm-gc/gcj_mlc.c +++ b/boehm-gc/gcj_mlc.c @@ -139,7 +139,6 @@ DCL_LOCK_STATE; } else { *opp = obj_link(op); GC_words_allocd += lw; - FASTUNLOCK(); } *(void **)op = ptr_to_struct_containing_descr; UNLOCK(); |

