Skip to content

Commit

Permalink
Merge from HEAD.
Browse files Browse the repository at this point in the history
svn path=/branches/mono-1-0/mono/; revision=35293
  • Loading branch information
vargaz committed Oct 25, 2004
1 parent 35a5b8b commit 214dbb1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mono/metadata/ChangeLog
@@ -1,3 +1,9 @@
2004-10-25 Zoltan Varga <vargaz@freemail.hu>

* gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
pending finalizers are not invoked after the appdomain has been
unloaded. Fixes #67862.

2004-10-08 Zoltan Varga <vargaz@freemail.hu>

* threads.c (abort_appdomain_thread): Fix unref errors.
Expand Down
3 changes: 3 additions & 0 deletions mono/metadata/gc.c
Expand Up @@ -555,6 +555,9 @@ finalize_domain_objects (DomainFinalizationReq *req)
g_ptr_array_free (objs, TRUE);
}

/* Process finalizers which are already in the queue */
GC_invoke_finalizers ();

/* printf ("DONE.\n"); */
SetEvent (req->done_event);

Expand Down

0 comments on commit 214dbb1

Please sign in to comment.