I have a legacy C API that I need to add functionality to.Specifically I need to make some of this API\'s call开发者_JS百科s thread-safe, because a call like this:
My Linux distribution is RedHat / CentOS 5.x i386/x86_64. I\'m using custom compiled Apa开发者_开发知识库che version 2.2.17 (both worker and prefork) modes with mod_php (PHP 5.2.17) custom compiled t
I have a setter for a class that I was wanting to have input sorted on setting (it\'s called infrequently enough the cost is OK), and I was thinking to help make it a little faster I\'d create a stati
I don\'t know much about threads, but I have a function in the main class of my console application called SendProcessCmd(string cmd). In my main() I create a process, and store the St开发者_StackOver
i have problem with canvas Jpanel andneed optimized solution i got this design from one of the post on this forum.
When I look through 开发者_StackOverflow社区sample implementations of IDisposable, I have not found any that are threadsafe. Why is IDisposable not implemented for thread safety? (Instead callers have
I have few queries related to read()/pread() system calls in a multithreaded environment I am using Mac-OSX which is freeBsd based , if that helps in any way
I have an Android program which has a RemoteService (different process) and the Application (with the UI). Now if I have a synchronize function used by both these components, will they be synchronized
I\'ve been reading som开发者_StackOverflow社区e blogs on multi-threaded programming in ruby. What I noticed is that the author tends to use the word thread-safety. What does it mean? Why is it importa
I\'m incrementing/decrementing boost::detail::atomic_count in multiple threads. Wonder if this practice is ok or if I need a lock around it(th开发者_开发百科en I could just use regular int variable)?