toast-users Mailing List for the Toast C++ library
Brought to you by:
coombez
You can subscribe to this list here.
| 2008 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Neal E. C. <nea...@gm...> - 2008-01-30 22:10:06
|
This release of Toast features an addition to simplify asynchronous programming. It provides an implementation of thread pools of generic worker threads and message queues to pass work to them. It provides a central 'default' worker pool singleton that, if initialized by the application, may be used in any libraries to distribute all work across the central pool of threads. On top of this are implemented promises and futures. Additionally anything that was 'thread dangerous' in the library has now been updated to be thread safe. The one caveat is that toast no longer builds with non-mt boost. Please kick the tires and let me know what you think! |
|
From: Neal E. C. <nea...@gm...> - 2008-01-29 20:14:34
|
This bug fix release has two changes: The python callback will now ensure the interpreter is locked for the thread calling it. The log output policies that use streams will flush them upon receiving a FATAL message. |