Tagged Questions

0
votes
0answers
16 views

Java Threading.

Hi all, I have 2 nested threads. First thread starts multiple instances of second thread. Each second thread has to sleep for some time (5 seconds). I want to start the first th …
3
votes
4answers
94 views

How to pass object from main thread to another thread in java

In my main application class I have an object of JTextArea(say txtArea). I have created two another threads in main_application program. The two threads I have created is for readi …
4
votes
2answers
136 views

Howto multithreaded jython scripts running from java?

I'm constructing a framework in Java that will listen for events and then process them in Jython. Different event types will be sent to different scripts. Since jython takes quit …
0
votes
0answers
4 views

Threading mechanism: preparing and releasing a cache in the background

Preface: This has become a quite a long post. While I'm not new to programming, I have close to zero practice around threading and could need some help here... This is probably a …
0
votes
5answers
75 views

Safely iterate an array that can be changed in another thread

I want to safely iterate(not get a collection was changed during iteration) through an array that can be changed by another thread. What's the best way I can do it?
6
votes
7answers
1k views

Which CPU architectures support Compare And Swap (CAS)?

Hi, just curious to know which CPU architectures support compare and swap atomic primitives?
0
votes
2answers
48 views

QGraphicsView/Scene - multithreading nightmare

Am I correct in thinking that the QGraphics* classes are not thread-safe? I am porting an old app to Qt and in the process attempting to make it multi-threaded too. I looked at the …
2
votes
6answers
106 views

Java: synchronized method

Dear all, we have two threads accessing one list via a synchronized method. Can we a) rely on the run time to make sure that each of them will receive access to the method based …
4
votes
4answers
62 views

Impossible to make a cached thread pool with a size limit?

It seems to be impossible to make a cached thread pool with a limit to the number of threads that it can create. Here is how static Executors.newCachedThreadPool is implemented in …
6
votes
4answers
103 views

Why does multithreaded file transfer improve performance?

RichCopy, a better-than-robocopy-with-GUI tool from Microsoft, seems to be the current tool of choice for copying files. One of it's main features, hightlighted in the TechNet arti …
0
votes
1answer
20 views

Selection between ACE & Boost for learning

Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need yo …
0
votes
2answers
17 views

Ruby 1.8.6, SQLite3 thread safety.

Is the sqlite3 Ruby gem thread safe? I can't find any documentation to say that it is. In my experiments, accessing a database from multiple Ruby threads eventually leads to the f …
22
votes
14answers
3k views

I’ve heard i++ isn’t thread safe, is ++i thread-safe?

I've heard that i++ isn't a thread-safe statement since in assembly it reduces down to storing the original value as a temp somewhere, incrementing it, and then replacing it, which …
0
votes
2answers
60 views

Is the linux kernel’s list.h thread safe?

Is the linux kernel's list.h thread safe? Thanks, Chenz
1
vote
4answers
85 views

Java object implements Runnable, how to remove the object from a collection

I have a java object that implements Runnable. here is the code. public class Obj implements Runnable { boolean shouldRun; private int stuff public Obj() { thi …

1 2 3 4 5 207 next
15 30 50 per page