thread-safe

on mac osx, is fprintf thread safe?

If so, where is this documented? Thanks! ...

C# ASP.NET Thread Safe static read only field

I have the following code in my ASP.NET project public sealed class IoC { private static readonly IDependencyResolver resolver = Service.Get("IDependencyResolver") as IDependencyResolver; static IoC() { } private IoC() { } public static IDependencyResolver Container { get ...

C# making dictionary access thread-safe?

Possible Duplicate: Whats the best way of implementing a thread-safe Dictionary in .NET? Possible Duplicate: Whats the best way of implementing a thread-safe Dictionary in .NET? Hi, whats is the easiest way to make C# dictionary access thread safe? Preferablly just using lock(object) but any other ideas welcome! ...

notify listener inside or outside inner synchronization

Hello all, I am struggling with a decision. I am writing a thread-safe library/API. Listeners can be registered, so the client is notified when something interesting happens. Which of the two implementations is most common? class MyModule { protected Listener listener; protected void somethingHappens() { synchronized(th...

How to call a JavaScript callback from a Java applet thread?

I have some long-running Java code running in a thread started by a Java applet. As soon as the code has finished, it has information for the user. I'd like to pass this information to a JavaScript callback in a thread-safe way. Just using the Java DOM API to modify the HTML document is not good enough, unless my JavaScript callback gets...

Pattern for lazy thread-safe singleton instantiation in java

Hello guys, the lazy thread-safe singleton instantion is kinda not easy to understand to every coder, so i wanted to create a class in our enterprise framework that would do the job. What do you think about it? Do you see something bad about it? Is there something similar like in Apache Commons? How can i make it better? Supplier.java...

Is WebServiceContext injection thread-safe?

Hi, I have a web service(Netbeans 6.9.1,Glassfish 3.0.1) with webservicecontext injection. I want to know if this class is thread-safe if I use @Singleton annotation. @WebService() @Singleton() public class Proves { @Resource WebServiceContext wsContext; @WebMethod(operationName = "feralgo") public String feralgo(@WebParam...

Are C++ template-functions threadsafe?

Googling don't find anything. Are they created at point of use, or are the generic parts shared between instances? (Same for template classes?) ...