Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
2answers
350 views

What are the similarities between the Java memory model and the C++11 memory model? [closed]

The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on. I'm interested ...
23
votes
4answers
2k views

Java: volatile guarantees and out-of-order execution

IMPORTANT EDIT I know about the "happens before" in the thread where the two assignments are happening my question is would it be possible for another thread to be reading "b" non-null while "a" is ...
17
votes
6answers
9k views

Java heap terminology: young, old and permanent generations?

I'm trying to understand how the concepts of young, old and permanent generations in the Java heap terminology, and more specifically the interactions between the three generations. My questions are: ...
15
votes
2answers
192 views

Java: volatile implied order guarantees

My question is an extension to this one: Java: volatile guarantees and out-of-order execution To make it more concrete, let's say we have a simple class which can be in two states after it is ...
10
votes
3answers
706 views

Is Dalvik's memory model the same as Java's?

Is Dalvik's memory model the same as Java's? I am particularly interested in whether reads and writes of reference and non-long/non-double primitive variables are atomic, but I would also like to know ...
9
votes
2answers
812 views

How can CopyOnWriteArrayList be thread-safe?

I've taken a look into OpenJDK's sources of CopyOnWriteArrayList and it seems that all write operations are protected by the same lock and read operations are not protected at all. As I understand, ...
9
votes
3answers
613 views

Scala and the Java Memory Model

The Java Memory Model (since 1.5) treats final fields differently to non-final fields. In particular, provided the this reference doesn't escape during construction, writes to final fields in the ...
8
votes
1answer
517 views

Dalvik VM & Java Memory Model (Concurrent programming on Android)

I am working on Android projects which involve the lot of concurrent programming and I am going to implement some custom inter-threads communication stuff (the one from java.util.concurent are not ...
7
votes
5answers
142 views

Java memory model synchronization

"Java Concurrency in Practice" gives the following example of an unsafe class which due the nature of the java memory model may end up running forever or print 0. The issue this class is trying to ...
6
votes
2answers
182 views

volatile with release/acquire semantics

Since Java 5, the volatile keyword has release/acquire semantics to make side-effects visible to other threads (including assignments to non-volatile variables!). Take these two variables, for ...
6
votes
5answers
1k views

Multithreaded Java Program for Conway's game of life - contention at the border cells

I am learning concurrent programming in java, and writing a simulation for Game of Life. Here is what I am thinking: Use int[][] to store the states of the cells partition the int[][] into t ...
5
votes
5answers
779 views

Memory effects of synchronization in Java

JSR-133 FAQ says: But there is more to synchronization than mutual exclusion. Synchronization ensures that memory writes by a thread before or during a synchronized block are made visible ...
4
votes
3answers
196 views

Java - Immutable array thread-safety

I have a question regarding the Java Memory Model. Here is a simple class presenting the problem: public class ImmutableIntArray { private final int[] array; public ImmutableIntArray() { ...
3
votes
1answer
118 views

Java 7 Memory Model

I was re-reading the JSR-133 specification when I wondered if there were any changes that occurred in the Java 7 release. That is, if 133 was obsolete or still valid. I didn't find anything on Google ...
3
votes
3answers
59 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
45 views

any singleton pattern early instantiated issues

I came across some issues using lazy instantiated singleton pattern Reference: http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html. Similarly is there any issues in using early ...
2
votes
1answer
137 views

Java Heap space monitoring - are we doing it wrong?

We have a Nagios check that checks the heap memory state on some Tomcat instances. The command it uses to get metrics back from the VM is the following: java -jar ...
2
votes
3answers
83 views

Java happend before thread start

I read somewhere that starting a thread has some special effect on the happend before relationship. Now I'm not sure if my code gurantees the happend before relationship, so please enlighten me. I ...
2
votes
1answer
76 views

Fence instruction insertion by JVM/JIT

Java memory model gives DRF guarantee(Data race freedom) which means that a data race free program when executed under relaxed memory model of java will give same behaviour as of sequentially ...
2
votes
3answers
489 views

What does “volatile” mean in Java?

We use volatile in one of our projects to maintain the same copy of variable accessed by different threads. My question is whether it is alright to use volatile with static. The compiler does not give ...
2
votes
4answers
369 views

Event Dispatch Thread meets the Java Memory Model

This is related to an earlier question I asked, where the answer was: If a field is accessed by multiple threads, it should be volatile or final, or accessed only with synchronized blocks. ...
1
vote
4answers
58 views

garbage collection of invisible variables

I have following code: void method() { Object o1 = new Object(); { Object o2 = new Object(); System.out.println(o2); } // any long operation } will o2 object be eligible for ...
1
vote
3answers
62 views

Java lock and happend-before relation

I'm not sure if I'm interpreting the javadoc right. When using a ReentrantLock after calling the lock method and successfully gaining a lock, can you just access any object without any synchronized ...
1
vote
6answers
109 views

java concurrency - final field initiation

Can anyone tell me whether this class is threadsafe or not ? class Foo { private final Map<String,String> aMap; public Foo() { aMap = new HashMap<String, String>(); ...
1
vote
3answers
330 views

java.util.concurrent: Should I synchronize to avoid visiblity issues among threads?

I wonder if when using any of the java.util.concurrent classes I still need to synchronize access on the instance so to avoid visibility issues. In short the question is: When using an instance of ...
1
vote
1answer
142 views

Java LockSupport Memory Consistency

Java 6 API question. Does calling LockSupport.unpark(thread) have a happens-before relationship to the return from LockSupport.park in the just-unparked thread? I strongly suspect the answer is yes, ...
1
vote
5answers
257 views

Java concurrency question - synchronizing on a collection

Will the following code snippet of a synchronized ArrayList work in a multi-threaded environment? class MyList { private final ArrayList<String> internalList = new ...
1
vote
3answers
328 views

Threadsafe publishing of java object structure?

Assuming that I have the following code: final Catalog catalog = createCatalog(); for (int i = 0; i< 100; i++{ new Thread(new CatalogWorker(catalog)).start(); } "Catalog" is an object ...
0
votes
2answers
60 views

Executor.execute() JMM guarantee

Consider the following code snipet: public class A { private final Executor executor = Executors.newCachedThreadPool(); private final Queue<Object> messageQueue = new ...
0
votes
1answer
112 views

java set max stack size

How can I set maximum stack size? I use jEdit to search with regular expression in rather big file (73 kb) and it fails with StackOverflowException. I tried to set -Xss40m but it seems to be initial ...
0
votes
2answers
92 views

java - reordering inside synchronized block

Is it possible for the reordering of statements inside a synchronized block ? For example synchronized(lock) { statement1; statement2; } In which, statement1 and statement2 are not dependent ...
0
votes
2answers
79 views

how to release memory after java programme execution

I have scheduled a jar file to run on system start up which is using mysql. it use to push thousands of records from one DB to another, during each execution it occupies lots of cpu memory but once ...
0
votes
2answers
57 views

Behaviour of sychronized

I have read that code inside a synchronized block conform to 'happens before' semantics so that all the values written inside a synchronized block should be visible to other threads in succession. ...
0
votes
7answers
234 views

Double-checked locking for growable array of binomial coefficients

I'm trying to use double-checked locking to maintain an array of binomial coefficients, but I read recently that double-checked locking doesn't work. Efficiency is extremely important so using ...