Tagged Questions
The synchronized tag has no wiki summary.
26
votes
8answers
5k views
In Java critical sections, what should I synchronize on?
In Java, the idiomatic way to declare critical sections in the code is the following:
private void doSomething() {
// thread-safe code
synchronized(this) {
// thread-unsafe code
}
// ...
24
votes
4answers
542 views
Cost of locking in .NET vs Java
I was playing with Disruptor framework and its port for .NET platform and found an interesting case. May be I completely miss something so I'm looking for help from almighty Community.
long ...
19
votes
5answers
19k 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 ...
13
votes
5answers
2k views
In what situations could an empty synchronized block achieve correct threading semantics?
I was looking through a Findbugs report on my code base and one of the patterns that was triggered was for an empty synchronzied block (i.e. synchronized (var) {}). The documentation says:
Empty ...
12
votes
4answers
253 views
Why do the Java bytecodes for invoking methods implicitly acquire and release monitors?
I've been reading up on the Java Virtual Machine Instruction Set and noticed that when using instructions to invoke methods (e.g. invokestatic, invokevirtual, etc.) that are marked synchronized, it's ...
12
votes
3answers
1k views
Why can't Java constructors be synchronized?
According to the Java Language Specification, constructors cannot be marked synchronized because other threads cannot see the object being created until the thread creating it has finished it. This ...
10
votes
2answers
1k views
Side effects of throwing an exception inside a synchronized clause?
Are there any unclear side effects to throwing an exception from within a synchronized clause?
What happens to the lock?
private void doSomething() throws Exception {...}
synchronized (lock) {
...
10
votes
7answers
6k views
Is HttpSession thread safe, are set/get Attribute thread safe operations?
Also, does the object that is being set have to be thread safe in order to guarantee that we know what the state of the object stored in session is known.
Also, I was reading on the web that some ...
9
votes
7answers
255 views
Is this java class thread safe?
This isn't homework for me, it's a task given to students from some university. I'm interested in the solution out of personal interest.
The task is to create a class (Calc) which holds an integer. ...
9
votes
4answers
164 views
Does java remove/optimize unnecessary synchronized statements?
Let's imagine someone synchronizes a method returning an int:
int whatever = 33;
...
public synchronized int getWathever() {
return this.whatever;
}
We know from Java specs that ints are ...
9
votes
1answer
898 views
How does join() work? (Multithreading in Java)
I'm preparing for an exam and after going over some sample exercises (which have the correct answers included), I simply cannot make any sense out of them.
The question
(Multiple Choice): What are ...
9
votes
4answers
2k views
Mixing synchronized() with ReentrantLock.lock()
In Java, do ReentrantLock.lock() and ReetrantLock.unlock() use the same locking mechanism as synchronized()?
My guess is "No," but I'm hoping to be wrong.
Example:
Imagine that Thread 1 and Thread ...
9
votes
3answers
421 views
Why is the synchronized keyword in Java called 'synchronized' instead of the more precise 'mutexed'?
I've heard that choosing to use the word 'synchronized' to describe mutexed statements is simply a mistake (Edit: 'mistake' was a bad choice of words here. Please see edit) in Java, but I'm wondering ...
8
votes
6answers
124 views
What is the difference between synchronized(this) and synchronized(ClassName.class)?
I read somewhere that synchronized(this) should be avoided for various reasons. Yet some respectable code that I encountered uses the following in the constructor:
public SomeClass(Context context) {
...
8
votes
3answers
388 views
Synchronization of non-final field
A warning is showing every time I synchronize on a non-final class field. Here is the code:
public class X
{
private Object o;
public void setO(Object o)
{
this.o = o;
...
7
votes
6answers
265 views
Should you synchronize the run method? Why or why not?
I have always thought that synchronizing the run method in a java class which implements Runnable is redundant. I am trying to figure out why people do this:
public class ThreadedClass implements ...
7
votes
2answers
203 views
Java: How to check if a lock can be acquired?
If I want to ensure exclusive access to an object in Java, I can write something like this:
...
Zoo zoo = findZoo();
synchronized(zoo)
{
zoo.feedAllTheAnimals();
...
}
Is there a way to ...
7
votes
2answers
1k views
Difference between volatile and synchronized in JAVA (j2me)
I am wondering at the difference between declaring a variable as volatile and always accessing the variable in a synchronized(this) block in JAVA (particularly J2ME)?
According to this article ...
7
votes
2answers
476 views
Difference between synchronization of field reads and volatile
In a nice article with some concurrency tips, an example was optimized to the following lines:
double getBalance() {
Account acct = verify(name, password);
synchronized(acct) { return ...
7
votes
4answers
1k views
Java Memory Model: reordering and concurrent locks
The java meomry model mandates that synchronize blocks that synchronize on the same monitor enforce a before-after-realtion on the variables modified within those blocks. Example:
// in thread A
...
7
votes
4answers
782 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 ...
6
votes
3answers
133 views
access java synchronized method from native code
I have a java class that has some (private static) synchronized methods which I want to call from native code as well. with some example code it becomes more clear what I mean
public class SomeClass ...
6
votes
3answers
92 views
How can I find all synchronized on the same monitor in Java with Eclipse?
With Eclipse it is possible to find all references of a method, member or class. Is it also possible to find all references to the monitor of a synchronized?
If this is not possible with Eclipse then ...
6
votes
3answers
135 views
Java: Are all monitors released when thread waits on an object?
Before a thread can wait on an object, it has to acquire a monitor on that object. The monitor is then released, and the thread attempts to re-acquired it once it awakes.
But what happens to other ...
6
votes
4answers
200 views
is a volatile variable synchronized? (java)
Say that I have a private variable and I have a setVariable() method for it which is synchronized, isn't it exactly the same as using volatile modifier?
6
votes
1answer
429 views
return from inside a @synchronized block in objective-c
May somebody tell me if it is ok to return from inside a @synchronized block ?
For example:
- (id)methodThatReturnsSomething:(BOOL)bDoIt
{
@synchronized(self) {
...
6
votes
5answers
339 views
Is 'synchronized' really just syntactic sugar?
I am new to multithreading, and I wrote this code which prints the numbers 1-10000 by having concurrently running threads increment and print a variable.
Here's the code I'm using:
package ...
6
votes
4answers
3k 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 ...
6
votes
6answers
738 views
How do you ensure multiple threads can safely access a class field?
When a class field is accessed via a getter method by multiple threads, how do you maintain thread safety? Is the synchronized keyword sufficient?
Is this safe:
public class SomeClass {
private ...
5
votes
3answers
82 views
How to know how much time cost by “synchronized” code, in Java?
I've a Java application, which is not fast enough as I expected. I've done a lot of researches of how to improve it, but not lucky.
Now I'm reviewing the code, and found there are a lot of ...
5
votes
7answers
112 views
Synchronize on value, not object
I want to do something like this in Java
public void giveMoney(String userId, int money) {
synchronized (userId) {
Profile p = fetchProfileFromDB(userId);
...
5
votes
3answers
153 views
Synchronized Methods in Java
Just wanted to check to make sure that I understand this. A synchronized method doesn't create a thread, right? It only makes sure that no other thread is invoking this method while one thread ...
5
votes
6answers
634 views
Concurrency in Java: synchronized static methods
I want to understand how locking is done on static methods in Java.
let's say I have the following class:
class Foo {
private static int bar = 0;
public static synchronized void inc() { ...
5
votes
4answers
364 views
What does “synchronized” exactly do? Lock a function or lock an objects function?
I am wondering how exactly "synchronized" works in java.
Let's say I model a board-game that consists of a number of fields. I implement the fields as a class (Field) and the board as a class (Board) ...
5
votes
3answers
315 views
Cost of synchronization
In a highly concurrent Java program and assuming that my methods are correctly written and correctly synchronized, I am wondering about how to determine which is better:
void synchronized something() ...
5
votes
4answers
395 views
Do we need to use MappedByteBuffer.force() to flush data to disk?
I am using MappedByteBuffer to speed up file read/write operations(). My questions as below:
I am not sure if I need to use .force() method to flush the content to disk or not. It seems like without ...
5
votes
3answers
2k views
Final variable and synchronized block in java
What is final variable ? (if I write final int temp ; in function what is the meaning ?)
For which goal use final variable(both class variable and in function variable) ?
why variable in synchronized ...
4
votes
1answer
64 views
Can I lock a SQLite Table for the current thread?
My application manages all its data in a a SQLiteDatabase that is accessed by a number of threads.
Right now I've been keeping all my DB calls synchronized on the database itself.
The reason I want ...
4
votes
1answer
140 views
Why `this.synchronized` instead of just `synchronized` in Scala?
In an example of working with JDBC in Scala, there is a following code:
this.synchronized {
if (!driverLoaded) loadDriver()
}
Why this.synchronized instead of just synchronized?
4
votes
2answers
208 views
Trade off with declaring method synchronized in java?
I had a problem with a thread locking up for some still unknown reason in my Android App whenever I tried to kill Thread B from Thread A (usually, sometimes it worked). I guessed that it was because ...
4
votes
1answer
148 views
Servlet doGet synchronization - doesn't work?
I know that this is simple question but i'm somehow confused.
If i understand well, in simple words, when request arrive to web server, he creates thread for each request to some servlet.
Consider ...
4
votes
3answers
416 views
ReentrantReadWriteLock - many readers at a time, one writer at a time?
I'm somewhat new to multithreaded environments and I'm trying to come up with the best solution for the following situation:
I read data from a database once daily in the morning, and stores the data ...
4
votes
3answers
138 views
Creating a mutiple syncLock variable for an instance
I have two internal properties that use lazy-loading of backing fields, and are used in a multi-threaded application, so I have implemented a double-checking lock scheme as per this MSDN article
Now, ...
4
votes
1answer
2k views
Obj-C: @synchronized(self)
i have something read in foreign code and I want to ensure my assumption:
@synchronized(self) is used to get rid of the self. prefix. So in my example I set the strText not in the function i set it ...
4
votes
2answers
254 views
Java help needed: Sharing an object between two threads and main program
I am new to Java and I'm attending a Concurrent Programming course. I am desperately trying to get a minimal working example that can help to demonstrate concepts I have learnt like using ...
4
votes
5answers
359 views
Does Java synchronized keyword flush the cache?
Java 5 and above only. Assume a multiprocessor shared-memory computer (you're probably using one right now).
Here is a code for lazy initialization of a singleton:
public final class MySingleton {
...
4
votes
1answer
181 views
Java: Do all mutable variables need to be volatile when using locks?
Does the following variable, x, need to be volatile?
Or does the manipulation within a utils.concurrent lock perform the same function as a synchronized block (ensuring it's written to memory, and ...
4
votes
3answers
972 views
How can I interrupt a synchronized statement in Java?
I have two threads that want to synchonize on the same object. Thead A needs to be able to interrupt Thread B if a certain condition has been fullfilled. Here is some pseudo-code of what the two ...
4
votes
4answers
798 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 ...
3
votes
1answer
53 views
SynchronizedSet and set operations in Scala
In REPL:
import collection.mutable.{ HashSet, SynchronizedSet }
var myPool = new HashSet[String] with SynchronizedSet[String]
myPool += "oh"
myPool += "yes"
myPool = myPool.tail
and I get:
error: ...