You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.48
Former-commit-id: 820b1abb8b0084602f3170cd587a99c905e1dae5
This commit is contained in:
parent
6bdd276d05
commit
5005e1465f
@@ -878,7 +878,7 @@ EXTRA_DIST = TestDriver.cs \
|
||||
Makefile.am.in
|
||||
|
||||
version.h: Makefile
|
||||
echo "#define FULL_VERSION \"Stable 5.0.0.42/dda961c\"" > version.h
|
||||
echo "#define FULL_VERSION \"Stable 5.0.0.48/851b6c7\"" > version.h
|
||||
|
||||
# Utility target for patching libtool to speed up linking
|
||||
patch-libtool:
|
||||
|
||||
@@ -878,7 +878,7 @@ EXTRA_DIST = TestDriver.cs \
|
||||
Makefile.am.in
|
||||
|
||||
version.h: Makefile
|
||||
echo "#define FULL_VERSION \"Stable 5.0.0.42/dda961c\"" > version.h
|
||||
echo "#define FULL_VERSION \"Stable 5.0.0.48/851b6c7\"" > version.h
|
||||
|
||||
# Utility target for patching libtool to speed up linking
|
||||
patch-libtool:
|
||||
|
||||
@@ -1 +1 @@
|
||||
462c790ecf322898ccf1c50ffbe6e71d7e13df3d
|
||||
6cfc9c6b9b9f5d22de9a650e7d5527a33b533cca
|
||||
@@ -1 +1 @@
|
||||
#define FULL_VERSION "Stable 5.0.0.42/dda961c"
|
||||
#define FULL_VERSION "Stable 5.0.0.48/851b6c7"
|
||||
|
||||
@@ -330,7 +330,9 @@ marker_idle_func (void *data_untyped)
|
||||
if (data->private_gray_queue.num_sections > 16 && workers_finished && worker_awakenings < active_workers_num) {
|
||||
/* We bound the number of worker awakenings just to be sure */
|
||||
worker_awakenings++;
|
||||
mono_os_mutex_lock (&finished_lock);
|
||||
sgen_workers_ensure_awake ();
|
||||
mono_os_mutex_unlock (&finished_lock);
|
||||
}
|
||||
} else {
|
||||
worker_try_finish (data);
|
||||
@@ -424,7 +426,13 @@ sgen_workers_start_all_workers (SgenObjectOperations *object_ops_nopar, SgenObje
|
||||
worker_awakenings = 0;
|
||||
mono_memory_write_barrier ();
|
||||
|
||||
/*
|
||||
* We expect workers to start finishing only after all of them were awaken.
|
||||
* Otherwise we might think that we have fewer workers and use wrong context.
|
||||
*/
|
||||
mono_os_mutex_lock (&finished_lock);
|
||||
sgen_workers_ensure_awake ();
|
||||
mono_os_mutex_unlock (&finished_lock);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user