Tagged Questions

0
votes
1answer
86 views

Understanding synchronized

Given this code: public class Messager implements Runnable { public static void main(String[] args) { new Thread(new Messager("Wallace")).start(); new Thread(new …
3
votes
2answers
112 views

java synchronized block for more than 1 objects?

Hi, I have two arrays, and I need to synchronize access to them across threads. I am going to put them in a synchronized block. The problem is, I can pass only one of them to 'synchronized' st one …
1
vote
2answers
83 views

Why does my thread stop when I try to access a synchronized list?

For some reason, the output of this: public void msgNeedParts() { // Blabla... System.out.println(name + ": Try to print 'tasks'..."); synchronized(tasks) { …
1
vote
5answers
108 views

C#: Do I have to make ArrayList synchronized if multiple threads only read it

I'm using static ArrayList in a class to store information about non-updatable database fields. I'm planing to initialize it in constructor once (init method call guarded by lock in constructor). …
3
votes
4answers
157 views

Volatile or synchronized for primitive type?

In java, assignment is atomic if the size of the variable is less that or equal to 32 bits but is not if more than 32 bits. What(volatile/synchronized) would be more efficient to use in case of double …
2
votes
2answers
104 views

Synchronizing on two or more objects (Java)

I have code similar to following: public class Cache{ private final Object lock = new Object(); private HashMap<Integer, TreeMap<Long, Integer>> cache = new HashMap<Integer, …
4
votes
3answers
2k views

Java synchronized methods: lock on object or class

The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave." What does this mean for a static method? Since a static method has no …
2
votes
4answers
120 views

What is the most efficient implementation of a java like object monitor in C++?

In Java each object has a synchronisation monitor. So i guess the implementation is pretty condensed in term of memory usage and hopefully fast as well. When porting this to C++ what whould be the …
2
votes
5answers
193 views

Why are synchronize expensive in Java?

I am really new to Java and I read that "synchronized" is "very expensive" in Java. All I want to know is what is expensive and how is it expensive? Thanks.
5
votes
4answers
99 views

Synchronized and local copies of variables

I'm looking at some legacy code which has the following idiom: Map<String, Boolean> myMap = someGlobalInstance.getMap(); synchronized (myMap) { item = myMap.get(myKey); } The warning I …
0
votes
4answers
105 views

Synchonization in Java

Hi, Quick question. I am pretty new to thread-safe programming, and was wondering if I have something like below, would this be safe from deadlock once compiled and run? public class Foo { …
1
vote
2answers
61 views

How can I synchronized two process accessing on the same resources?

I have two processes which access to the same physical memory(GPIO data addr). So how can I have synchronized between these apps? I understand that we have some kind of locking mechanism such as …
1
vote
3answers
86 views

Synchronize on BlockedQueue.

Hello, I have a code piece that I am reviewing (using FindBug). public class MyClass{ ... private BlockedQueue q = new LinkedBlockingQueue<MyData>(1000); private static final batchSize = …
1
vote
3answers
251 views

What is a good naming convention for a routine that sets a global variable in the same class

Code Complete (Chapter 7, Section 3) says that a good function should be named for the value it returns and a good procedure name in a class should be named for what it does. When I write …
4
votes
4answers
203 views

Synchronization in threads for Java

I have a home grown web server in my app. This web server spawns a new thread for every request that comes into the socket to be accepted. I want the web server to wait until a specific point is hit …

1 2 next
15 30 50 per page