summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2011-10-26 22:27:48 +0200
committerMurray Cumming <murrayc@murrayc.com>2011-10-26 22:27:48 +0200
commitacf84955b9a86597e4675a0edc0848851ecafba7 (patch)
tree9e029994b833936ffbf5c113d8a1cfa972465095 /ChangeLog
parent2137668ccdad1a908d3ed275b2cf2eee8afb94cb (diff)
downloadglibmm-acf84955b9a86597e4675a0edc0848851ecafba7.tar.gz
threadpool example: Use Mutex instead of StaticMutex.
* examples/thread/threadpool.cc: The advantage of StaticMutex was that it would silently do nothing if threads were not initialized. That was never a useful distinction in this example anyway. Also remove the deprecated thread_init() call. * glib/src/thread.ccg: Mutex: Add a TODO about not using the deprecated API.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bab29b79..ab3ff144 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2011-10-26 Murray Cumming <murrayc@murrayc.com>
+ threadpool example: Use Mutex instead of StaticMutex.
+
+ * examples/thread/threadpool.cc: The advantage of StaticMutex was that
+ it would silently do nothing if threads were not initialized. That
+ was never a useful distinction in this example anyway.
+ Also remove the deprecated thread_init() call.
+ * glib/src/thread.ccg: Mutex: Add a TODO about not using the deprecated
+ API.
+
+2011-10-26 Murray Cumming <murrayc@murrayc.com>
+
Fix the deprecation ifdefs.
* glib/src/thread.hg: Move the deprecation ifdefs to avoid affecting