1
vote
2answers
24 views

Multiple users access singleton

I'm using a SQLconnector singleton class with a lock object. My question now is that if multiple users use this class the same time, will this give issues? FYI... Singleton code public sealed class ...
0
votes
1answer
52 views

About boost::lock_guard and boost::unique_lock

I was hoping someone could tell me if my understanding on the following 3 locks is correct and possibly add to it. my main concern is speed with minimum overhead. boost::lock_guard ...
2
votes
1answer
51 views

Locking richtextboxes called from non-UI thread

Given the following code, how would I be able to lock the richtextbox so that each log-call gets to finish working before another can start typing to it? private delegate void ...
1
vote
1answer
68 views

ReentrantLock -> lockInterruptibly() won't check interrupt state sometimes?

Recently i've been refactoring my project with "ReentrantLock" to simplify the logic. The general idea is: 1. the "main" runnable thread is running on its own 2. if everything is in order, the main ...
0
votes
1answer
35 views

Can't execute first thread with mutex

I want to finish my threads with a mutex. The first thread won't execute, thread 2 & 3 execute. Does anyone know what this problem could be? Sometimes thread 1 is executed but then 2 or 3 is not ...
0
votes
2answers
28 views

lock() on the same object I'm trying to exclusively access or use separate locking object?

private class MyClass { private static MyObject myObject = new MyObject(); private void ModifyObject() { lock(myObject) { myObject.UnsafeMethod(); } ...
1
vote
2answers
68 views

how to lock a file stream without a mutex

I have been locking/unlocking files in multi-thread applications using something like void Write_File(FILE* Input_File) { flockfile(Input_File); Read_Stuff(); ...
1
vote
3answers
95 views

Java thread causes deadlock

I' m trying to implement some basic start, stop, pause and resume functionality that allows me the following state transitions: stopped to running running to stopped running to paused paused to ...
0
votes
0answers
42 views

Resource manager with ReentrantLocks

I am trying to implement a resource handler class that assigns the resources (strings, stored in an array) to multiple clients that can try to acquire the lock on a set of resources and unlock them by ...
0
votes
2answers
64 views

Threading and locking in my program

I'm new to multithreading and having a problem with threads and locking in my program. I have simplified my problem by creating the code below private final ConcurrentLinkedQueue<String> ...
0
votes
1answer
35 views

Multithread proxy change but once

Let say I have a code like this: def func1(a,b,c): try: p = pycurl.Curl() p.setopt(pycurl.PROXY, "127.0.0.1") p.setopt(pycurl.PROXYPORT, 9050) ...
0
votes
0answers
88 views

Critical section in kernel CUDA? [closed]

I want to count a number of PI. I want to implement a critical section in the kernel of CUDA. I don`t know how to do it. I will show you my kernel: __global__ void kernelPI(int *d_hits_on_blocks, ...
0
votes
3answers
260 views

C++ Multithread Mutex Lock issue

I am new to C++ & Multithread. Recently taking a look at the Lock property... Suppose I have a class with mutex inside. When I use the lock method on the mutex object, how can I told which part ...
-1
votes
3answers
54 views

Multithreading/Concurrency issue

I am writing a barbershop program using threads. Currently I have one barber and multiple customers coming in at the same time. However, after the first run through the program, the rest of the ...
0
votes
1answer
54 views

How can I determine if this method is threadsafe?

private void PerformValuations(DateTime testDate, RegressionEffectivenessTest.RegressionDateWithValues date) { var valueDate = new LegacyWCFRateTimeStamp { Type = ...
0
votes
1answer
68 views

Multiple threads invoking the UI thread: locking needed for form data?

I don't have a problem (yet), since my application works, but I want to understand what's going on so I don't get into trouble later. (I'm primarily a database/web application programmer, so threads ...
1
vote
0answers
147 views

How to prevent threads from starvation in C++11

I am just wondering if there is any locking policy in C++11 which would prevent threads from starvation. I have a bunch of threads which are competing for one mutex. Now, my problem is that the ...
4
votes
1answer
125 views

Multi-threaded Objective-C accessors: GCD vs locks

I'm debating whether or not to move to a GCD-based pattern for multi-threaded accessors. I've been using custom lock-based synchronization in accessors for years, but I've found some info (Intro to ...
2
votes
2answers
78 views

Notify followed by another notify [duplicate]

What happens if you notify a lock, and immediately notify that lock again? Assume there are 2 or more threads waiting on that lock. Is it guaranteed that two threads are woken up? Or is it possible ...
0
votes
1answer
123 views

Interpreting jstack trace to track down the stalled lock

I've used Samurai and I can see there is no deadlock and several threads waiting but I can't seem to figure out exactly which lock is stalling the process. Can anyone help me out? I'm not looking ...
0
votes
0answers
35 views

Kernel-Mode Constructs and GC?

The WaitHandle class declaration is : public abstract class WaitHandle : MarshalByRefObject, IDisposable {...} Dispose internally calls the Win32 CloseHandle function But I've heard that I should ...
1
vote
4answers
87 views

Semaphore of size 1 the best option?

If you have a resource that only once person should access at a time you could use a semaphore of size one or you could just use a single ReentrantLock instance? What are the subtle difference that ...
0
votes
2answers
69 views

Is it required to lock shared variables in perl for read access?

I am using shared variables on perl with use threads::shared. That variables can we modified only from single thread, all other threads are only 'reading' that variables. Is it required in the ...
0
votes
0answers
44 views

Semaphore with forms C#

I'm currently doing an ATM simulator using two threads, which allows two forms to work simultaneously. I am now trying to block one of the threads from accessing specific method when the other thread ...
0
votes
0answers
33 views

Could we lock stateless session bean instance?

guys, For some reason, I try to hit the max-size of stateless session bean pool. I can use a mass of threads to do that, by looking up my stateless session bean "at the same time", but it requires ...
1
vote
4answers
104 views

Python: accessing a function by multiple thread concurrently without Lock mechansim

When multiple threads access the same function then do we require to implement the lock mechanism explicitly or not. I have a program using thread. There are two thread, t1 and t2. t1 is for add1() ...
0
votes
1answer
67 views

Volatile Singleton member?

I have a state engine that uses a Singleton software design pattern. The state engine can be accessed by multiple threads. The object is initialized from the main thread at program start up and is not ...
0
votes
1answer
39 views

Python threading in cron - lock stderr file

I'm gonna schedule a cron with these options in my Ubuntu machine, * */1 * * * python /path/to/script/my_script.py --pythonpath=/path/to/script/ 1>/path/to/script/success.log ...
1
vote
4answers
54 views

Python - creating a class that locks objects using threading.lock()

Trying to create a class that can lock objects using threading.lock: class ObjectLock(object): def __init__(self): self._lock = threading.Lock() self._value = False def ...
1
vote
1answer
81 views

Replaying stored data at a fixed rate

I am working on a problem where I want to replayed data stored in a file at a specified rate. For Eg: 25,000 records/second. The file is in ascii format. Currently, I read each line of the file and ...
0
votes
1answer
28 views

Not able to understand the python when we need Rlocking the thread

Can anyone give me the code example when i need to use Rlock instead of simple lock I am not able to find the use case when i need Rlock I have read this but could not get the actual use of that ...
0
votes
2answers
57 views

Having a copy of an object instead of a locked one

Is there a way of, instead of locking an object, show a temporary copy of it, to the one who is accessing it?
0
votes
3answers
92 views

How to stop thread when Lock is encountered?

I have the following code that starts some threads: List<Stuff> lNewStuff = new List<Stuff>(); // populate lNewStuff for (int i = 0; i < accounts.Length; i++) { ...
0
votes
1answer
80 views

Designing a better logger class [closed]

Could you please critisize the logger class below? Can it be used in a multi threaded web environment? If not how can I improve it? Is there anything wrong with locking in WriteToLog method or ...
2
votes
3answers
74 views

In .Net do I need to do double checked locking

If I want to lazy instantiate a class that holds a lot of data and I want it to only have one instance (Singleton), then do I need to double check the object before I setup the instance? (.Net). Or is ...
1
vote
2answers
117 views

Object level and Class level locking

I find a code snippet that works fine till lock is at Object level and when the same lock is made static final ( i.e static keyword is added ) , code starts failing with concurrency related errors. ...
4
votes
3answers
132 views

when “if” is written at the end of line in perl, what is the scope of it

this question is actually coming from using threads. We know that in perl threads, we have a function called lock, and according to cpan http://perldoc.perl.org/threads/shared.html: lock places a ...
0
votes
1answer
69 views

Can you give me a simple example when I am to use “monitor” because it cannot be done with “lock”?

MSDN tells me that using lock is equivalent to using monitor but is more concise and less error prone. Can you give me a simple (single process) example why would I be forced to use Monitor ...
3
votes
5answers
63 views

Why does the lock insure that the underlying monitor is released and direct usage of monitor does not?

The msdn article Thread Synchronization (C# Programming Guide) specifies that: lock (x) { DoSomething(); } is equivalent to: System.Object obj = (System.Object)x; ...
0
votes
1answer
32 views

Is the “synchronized access of threads” the opposite to “synchronizing the shared object”?

What does the phrase: "We are getting inconsistent output as the access of these threads to the Printer object is synchronized" in the article Threads and Thread Synchronization in C# mean? ...
2
votes
6answers
106 views

How to execute a piece of code exactly once with multithreading in mind?

I have a function which does "migration" from an old format to a new format. I need this to occur in the constructor of my object, but not the static constructor because an argument is needed. How can ...
3
votes
5answers
97 views

MultiThread in Games sharing resources, Need some feedback on a idea

I recently started with a project of making a game (I'm kinda new) and I started thinking about how you can implement multi threads to boost the performance. Suppose that you have a unit in a game ...
18
votes
2answers
428 views

Why do I have a lock here?

See the following concurrent performance analysis representing the work done by a parallel foreach: Inside the loop each thread reads data from the DB and process it. There are no locks between ...
1
vote
0answers
34 views

wcf wait for object to become available

I am a newbie programmer, I'm writing a WCF project using c#. On my server side, it accepts calls and does some complicated process. However, I want to make sure certain process is finished before the ...
5
votes
5answers
137 views

Can ToArray() throw an exception?

While the answer to this question is excellent, it implies that you should surround calls to List.ToArray() in a lock for concurrency. this blog post also implies that it could fail catastrophically ...
0
votes
2answers
74 views

Implement thread lock with objective c [closed]

I'm developing an iOS 5 and above with latest SDK. I have to implement a synchronized method with a Thread Lock in Objective C. This is the Java version of what I have to do: public abstract class ...
2
votes
1answer
59 views

Is there anything wrong with this locking pattern in a thread unsafe object?

This pattern seems to be working for me to achieve thread locking in this thread unsafe environment. However in terms of patterns and best practice (especially as I have figured it out myself), I'm ...
1
vote
1answer
71 views

Checking if activerecord is locked in “updating” status

Let's say I have following entities and relationships: A<-B<-C<-D<-E I have many E for the same A (E belongs to A through D, C and B) I have a code snippet that looks like this: ...
1
vote
4answers
130 views

Invoking Method on UI thread from within a Lock()

I have two methods, MethodA & MethodB. MethodB has to run on the UI thread. I need them to run one after the other without allowing MethodC to run betwixt them. MethodC is called when a user ...
7
votes
2answers
96 views

Multiple lock objects necessary?

Given the following class: class x { Object lockOne = new Object(); Object lockTwo = new Object(); List<Something> listOne = new List<Something>(); List<Something> ...

1 2 3 4 5 16