Tagged Questions
2
votes
1answer
66 views
Java dining philosophers monitors
I have a problem in my Java code that should simulate dining pholosophers problem, which is described here: http://en.wikipedia.org/wiki/Dining_philosophers_problem
I want to output the current state ...
1
vote
3answers
35 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 {
...
1
vote
1answer
298 views
Java monitor implementation
I'm trying to do the Unisex Bathroom problem in Java. In short, there is one bathroom with an infinite number of toilets that both men and women can use. Men and women can't be in the bathroom at the ...
2
votes
0answers
80 views
Tools for practicing with monitors and semaphores [closed]
I'm a student of a course in operating systems and i want do exercises with semaphores and monitors. Bearing in mind that my favourite programming language is C/C++, is there a good library, which ...
1
vote
1answer
67 views
Two threads deadlocking but cant see why, lock relased with notifyAll()
using JConsole it seems i get a deadlock situation when 2 threads try to modify this object.
package com.steven.concurrent.assignment2.memoryallocator;
/*
* This seems to deadlock... cant see why ...
1
vote
1answer
367 views
Java Unisex bathroom using semaphores & monitors
I've been set an assignment for concurrent programming, to code a Unisex Toilet. It seems to be a common enough assignment for this subject. For those unfamiliar, the rule are set (in this case at ...
2
votes
2answers
150 views
Monitor concurrency (sharing object across processes) in Python
I'm new here and I'm Italian (forgive me if my English is not so good).
I am a computer science student and I am working on a concurrent program project in Python.
We should use monitors, a class with ...
0
votes
1answer
141 views
C# monitors (from a Java developer POV)
I'm working on the port of a C#/directx game client to Java, so that I can learn some C# (as I am completely profane on it) and in the meanwhile improve my knowledge on a java opengl engine.
When I ...
1
vote
2answers
177 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
4answers
497 views
Can several threads hold a lock on the same monitor in Java?
Currently we are analyzing a tomcat thread dump. A single thread dump of all threads running at that same
time on a tomcat contains the following lines:
...
"soldOutJmsConsumerContainer-1" prio=10 ...
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
270 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() ...
0
votes
3answers
118 views
Terms to distinguish Java programming language monitor and wait/notify monitors
I am having issues with the terms for the Java monitors. First of all I distinguish between two kinds of monitors:
those who can be acquired by using wait()
those who can be acquired by the ...
0
votes
2answers
480 views
Concurrency - A monitor that implements semaphores
I need help constructing a monitor that implements a semaphore, and simple C example will do.
This is to demonstrate that a monitor can be used any place a semaphore can be used.
2
votes
1answer
316 views
Streaming data over sockets
I want to broadcast live data from one server to multiple clients using Socket.
However, I'm running into concurrency issues with my current implementation.
public class Connection {
private ...
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 ...
