Tagged Questions
0
votes
1answer
29 views
Java Monitors: Does having a Java monitor with Synchronised Methods Avoid Deadlocks?
Basically, if I have lots of synchronised methods in a monitor. Will this effectively avoid deadlocks?
1
vote
3answers
40 views
Java Monitors - Do synchronised methods prevent any other thread being IN that object?
Does the following mean that only ONE thread can be in ANY method of the object? Or can a multiple threads be in DIFFERENT methods just not the same one? Why?
public class SynchronizedCounter {
...
0
votes
1answer
42 views
How does Monitor Synchronisation work?
So I'm reading about synchronisation and have come across Monitors, but can't seem to grasp how they work.
I see the general layout is something in the format of the following with what I can see as ...
0
votes
0answers
180 views
Implementing Monitors with Semaphores - wrong solution
I read a book which suggest the next code, but say that it may be deadlock.
semaphore mutex=1; /*control access to monitor*/
semaphore c /*represents condition variable c */
void enter_monitor(void) ...
1
vote
2answers
183 views
Monitors and mutual exclusion
Just wanted to know if mutual exclusion in monitors is at a procedure/method level or if it is at a monitor level.
I mean, in the first case, there might be 2 threads accessing the monitor, but they ...
3
votes
3answers
167 views
Java happend-before in synchronized block
I need some help understanding the Java memory model.The following is a gerneric example to grasp the basic concept:
Image I have an object instance called Shared and two threads A and B. Furthermore ...
2
votes
2answers
387 views
BlockingQueue design with multiple monitors
I am writing a BlockingQueue and am wondering how other implementations solve this problem:
If I only have one monitor (the queue object) and let producers and consumers wait, I will have to ensure ...
1
vote
2answers
83 views
All the Swing frames get “frozen” when wait() is called in Java
I want to wait() the put() method called from the second thread which has been connected to the Server (Monitor). But when i do this, the whole GUI frames (Swing) including their elements get frozen ...
4
votes
2answers
271 views
Will Java's synchronization update the complete cache, or only the object I synchronized on?
If I access an object inside of a synchronized method or synchronized block, are all object in that accessed element also synchronized?
Imagine there's an object Queue having a synchronized add() ...
1
vote
2answers
100 views
Order of Monitor regain in Java
Well, I was wrong - the stating below does not apply, not in my test runs.
This mail (wot, no chickens?) from the the Java Thread mailing list is quite old, in fact it's from 25th September 1996. ...
11
votes
2answers
3k views
Lock (Monitor) internal implementation in .NET
For mastering of some technology you have to know how it's made at one abstraction level lower. In case of multithreading programming, it will be good to know about synchronization primitives.
Here is ...
4
votes
4answers
3k views
Is it better to synchronize with semaphores or with monitors?
Is it better to synchronize with semaphores or with monitors?
10
votes
3answers
642 views
How heavy are Java Monitors?
Say I have an array of thousands of objects, and a small number of threads that might access each of the objects. I want to protect the access to one of the objects methods. Easiest way would be to ...
1
vote
1answer
750 views
Monitor Synchronization: Implementing multiple condition variables
I am implementing monitor synchronization. I was wondering how does implementing multiple condition variables works.
So a condition variable has method wait() which puts it on the wait queue for a ...
2
votes
3answers
1k views
does Monitor.Wait Needs synchronization?
I have developed a generic producer-consumer queue which pulses by Monitor in the following way:
the enqueue :
public void EnqueueTask(T task)
{
_workerQueue.Enqueue(task);
...
7
votes
1answer
651 views
What important difference exists between Monitor.TryEnter(object) And Monitor.TryEnter(object, ref bool)?
It seems that these code snippets ought to behave identically:
1: Monitor.TryEnter(object)
if (Monitor.TryEnter(lockObject))
{
try
{
DoSomething();
}
finally
{
...
9
votes
1answer
258 views
What is a class monitor in D?
D2.0 classes have a __monitor class property that "gives access to the class object's monitor" (documentation). I searched around a bit and did not find any information except for this bit of detail. ...
4
votes
3answers
6k views
Waiting for a Timer to finish in Java
I'm using java.util.Timer to schedule a periodic task. At one point, I'd like to shut it down, and wait for it to finish.
Timer.cancel() will prevent any future tasks from running. How do I make sure ...
0
votes
1answer
1k views
How to synchronize threads when polling for state changes with boost
In my application I want to be informed by events, that another application has been started or stopped. I have an existing API to the running application which cannot be changed to accomodate ...
3
votes
4answers
429 views
Why the name “monitor”?
I'm referring to monitors as described here:
http://en.wikipedia.org/wiki/Monitor_(synchronization)
None of the definitions here seem apropos:
http://www.thefreedictionary.com/monitor
So why are ...