2
votes
1answer
138 views

Using static class methods in multi-threaded programming

I am building a webcrawler which is using two classes: a downloader class and an analyzer class. Due to my design of the program I had some methods which I outsourced to a static class named utils ...
2
votes
5answers
186 views

How to communicate changes to static member variable between threads in C++

I have a class that uses a static member variable as a flag. The program is multithreaded, and changes to the value of the static variable are not communicated between threads consistently. The ...
0
votes
1answer
223 views

Qt library - thread safety of static members functions

Qt's documentation states that all QDateTime functions are reentrant which in Qt terms it means that if you create new object of QDateTime in another thread you can safely work with it. But are the ...
0
votes
1answer
180 views

Static Class variable for Thread Count in C++

I am writing a thread based application in C++. The following is sample code showing how I am checking the thread count. I need to ensure that at any point in time, there are only 20 worker threads ...
2
votes
1answer
165 views

two instances of a static member, how could that be?

I have a multithreaded application. I declare a class with a static member in a shared library. Printing the address of the member from different threads from different libraries shows different ...
0
votes
1answer
169 views

Java threads not sharing static data

I have two threads which are supposed to share the static variable data(not constant) and they have to execute accordingly. But none of these threads are able to get the updated static variable data, ...
2
votes
3answers
159 views

Do accesses in a constructor to a shared static variable need to be synchronized?

I know that constructors cannot be synchronized in Java. Does this mean that if a constructor modifies a static variable within the class, and if constructors could be invoked from multiple threads, ...
0
votes
3answers
492 views

Mutable static variable across multiple threads

I'm learning about threads in Java right now, along with all the concepts and keywords. I just learned the volatile keyword, and it raised some interesting questions in my mind for a project I'm ...
5
votes
1answer
428 views

C++ static variable inialization and threads

I have the following bit of C++11 code that uses threads and static variable initialisations. My question is: What guarantees or assurances does the C++ language make about the single initialisation ...
0
votes
1answer
392 views

C# thread functions not properly sharing a static data member

I have a class as following public class ScheduledUpdater { private static readonly object lockingObject = new object(); private static Queue<int> PendingIDs = new Queue<int>(); ...
1
vote
2answers
972 views

Static variable across multiple requests

In order to improve speed of chat application, I am remembering last message id in static variable (actually, Dictionary). Howeever, it seems that every thread has own copy, because users do not get ...
1
vote
2answers
96 views

Locking to modify static value-type member. Is it necessary?

I have a CacheHelper class to facilitate interaction with the cache. I want to use a static int field to specify my cache timeout. The field is initially set to a const default value but I want to ...
0
votes
1answer
2k views

How do I prevent static member variables from being accessed by more than one request at a time in IIS?

I’m having some trouble with understanding how IIS is handling static variables on its threads. My understanding has always been that if IIS has 4 worker processes that it can handle 4 requests ...
4
votes
3answers
2k views

Static fields in an ASP.NET Webservice

Is a static variable in a webservice shared between all running invocations of the webservice on a server? In my case I want a server-wide sync-lock, and I beleive I can accomplish that with a single ...
1
vote
3answers
1k views

Does the lock(objlocker) make that object thread safe app wide? And are static members automatically thread safe?

When you lock an object is that object locked throughout the whole application? For Example, this snippet from C# 3.0 in a Nutshell Section 19.6.1 "Thread Safety and .NET Framework Types": static ...