Base Class Repository
Is there a site that contains c++ base classes. I am looking to develop an application that is multithreaded. I am hoping that there is a base class available that has the thread capabilities, message queues, and signal processing. This is not for a class. This is for a utility to display ascii string sent via udp from an embedded device to aid in debugging. Any help is appreciated. Chris Taylor
On Wednesday 21 September 2005 10:36 am, cjtaylor_mail-suse@yahoo.com wrote:
Is there a site that contains c++ base classes. I am looking to develop an application that is multithreaded. I am hoping that there is a base class available that has the thread capabilities, message queues, and signal processing. This is not for a class. This is for a utility to display ascii string sent via udp from an embedded device to aid in debugging. Any help is appreciated. There are a lot of good C++ sites: Try this for threads: http://threads.sourceforge.net/ http://www.geocities.com/SiliconValley/Heights/6038/dthreads.html
Additionally, remember that the STL is NOT threadsafe, and probably never will be. However, companies, like Rogue Wave do provide threadsafe C++ STL alternatives. -- Jerry Feldman <gaf@blu.org> Boston Linux and Unix user group http://www.blu.org PGP key id:C5061EA9 PGP Key fingerprint:053C 73EC 3AC1 5C44 3E14 9245 FB00 3ED5 C506 1EA9
Also consider using Boost.Threads. BTW, boost has several other nice utilities. http://www.boost.org/doc/html/threads.html []s Davi de Castro Reis Jerry Feldman wrote:
On Wednesday 21 September 2005 10:36 am, cjtaylor_mail-suse@yahoo.com wrote:
Is there a site that contains c++ base classes. I am looking to develop an application that is multithreaded. I am hoping that there is a base class available that has the thread capabilities, message queues, and signal processing. This is not for a class. This is for a utility to display ascii string sent via udp from an embedded device to aid in debugging. Any help is appreciated.
There are a lot of good C++ sites: Try this for threads: http://threads.sourceforge.net/ http://www.geocities.com/SiliconValley/Heights/6038/dthreads.html
Additionally, remember that the STL is NOT threadsafe, and probably never will be. However, companies, like Rogue Wave do provide threadsafe C++ STL alternatives.
--- Davi de Castro Reis <davicastro@terra.com.br> wrote:
Also consider using Boost.Threads. BTW, boost has several other nice utilities.
http://www.boost.org/doc/html/threads.html
[]s Davi de Castro Reis Jerry Feldman wrote:
On Wednesday 21 September 2005 10:36 am, cjtaylor_mail-suse@yahoo.com wrote:
Is there a site that contains c++ base classes. I am looking to develop an application that is multithreaded. I am hoping that there is a base class available that has the thread capabilities, message queues, and signal processing. This is not for a class. This is for a utility to display ascii string sent via udp from an embedded device to aid in debugging. Any help is appreciated.
There are a lot of good C++ sites: Try this for threads: http://threads.sourceforge.net/
http://www.geocities.com/SiliconValley/Heights/6038/dthreads.html
Additionally, remember that the STL is NOT
will be. However, companies, like Rogue Wave do
threadsafe, and probably never provide threadsafe C++ STL
alternatives.
-- To unsubscribe, email: suse-programming-e-unsubscribe@suse.com For additional commands, email: suse-programming-e-help@suse.com Archives can be found at: http://lists.suse.com/archive/suse-programming-e
Thanks. This looks like what I was loooking for. Chris
participants (3)
-
cjtaylor_mail-suse@yahoo.com
-
Davi de Castro Reis
-
Jerry Feldman