1
vote
1answer
38 views

How is consistency maintained for multiple copies of variables that is declared as a ThreadLocal?

As far as I understand ThreadLocal variables maintain a separate copy of the variable for each thread. This variable whose multiple copies are maintained is essentially a shared variable. So what does ...
5
votes
5answers
80 views

Thread safety of final field

Let's say I have a JavaBean User that's updated from another thread like this: public class A { private final User user; public A(User user) { this.user = user; } public ...
0
votes
1answer
21 views

Thread.Join never returns in FormClosing event if using Invoke method in worker thread [duplicate]

I am writing an application using multithread. The application basically has a UI and a thread doing some work in the background and updating the UI. When I close the form, In the formclosing event, I ...
0
votes
1answer
41 views

Synchronize Threads triggered by ScheduledExecutorService

I have the following test project: import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.concurrent.ScheduledExecutorService; import ...
3
votes
3answers
57 views

Synchronize Protection Not Working for Dual Threads

Below is my stripped down java code for review. I have several subclasses, and when execParallel() is called, a new thread is launched. This thread and the default thread must both execute ...
1
vote
4answers
60 views

resolving threading conflicts in C#

lets suppose there is a static variable accessed by 2 threads. public static int val = 1; now suppose thread 1 execute's a statement like this if(val==1) { val +=1 } However after the check ...
-1
votes
0answers
49 views

Regarding Thread Synchronization [closed]

Handling of Socket Connection using Threads of same process...? Thread Invoking Code: clientSocket = echoServer.accept(); numConnections ++; CM_Timestamp_Generator oneconnection = new ...
0
votes
0answers
35 views

Can we use static functions in multithreading environment?

I'm new to Java and Selenium. In selenium test I want to check whether element is displayed before performing any action on it. I have written static function to check for element existence. I'll be ...
-2
votes
0answers
32 views

c# 2 Threads, 1 writes to a “Queue,” 1 reads from the “Queue” [closed]

c# Note: I'm being figurative with the word "Queue" Thread A is sniffing packets on the network. As packets come in, put them into a "Queue" of some sort. Thread B reads the "Queue", does work, and ...
0
votes
2answers
46 views

How Do I Get richTextBox1.Lines Cross-Threading Saftly?

I need to get richTextBox1.Lines in another thread. But I don't know how to cross thread saftly to get it. string[] lines = richTextBox1.Lines;
1
vote
1answer
31 views

Different instancens in a thread, or threadpool?

I currently have a project that starts up a central logic class (which uses some other .dll's to check on hardware or connect to the database). After that, a WPF form is started. This form uses the ...
0
votes
0answers
68 views

why does my multithreaded application hang when trying to join? [closed]

I have created an application using boost threads, this application works fine on one machine, however on another it hangs after attempting to join. Here is a rough pseudocode of what is happening: ...
7
votes
2answers
71 views

When I use threads to print things to the console, why does it produce odd results?

I've been getting into Threads lately while reading the very nice pdf from Rob Miles (here). He had an example on page 160 (2012, C# pdf) but it didn't write to the console just did empty loops. I ...
0
votes
1answer
34 views

Memory issues with threads

I'm working on a multi-threaded server application. I have this struct that I try to pass to 2 Threads: struct params{ SafeQueue<int> *mq; Database *db; }; class Server{ Server(Database ...
0
votes
2answers
46 views

Java Thread concept / demo

I'm trying to write a Java program that uses threads. I want to be able to run 3 threads when the program starts, and have them waiting on an ArrayList of "work orders". Initially, theere will be no ...
3
votes
1answer
53 views

Newbie how does c# threading handle events raised on another thread

Lets say I have 2 threads - thread A and thread B. I register an event on thread A and invoke it from thread B. Which thread would the event be executed on? Are there any special scenario when the ...
0
votes
2answers
52 views

Using Java, is this type of setup and call from a method thread safe?

I have a service class that is an implementation of an interface and it's annotated with Spring as a service and a singleton. I have two different methods where each creates a string builder local ...
0
votes
1answer
57 views

Stopwatch elapsed time thread safety

Ok so I have a fairly simple question which I could not find a concise answer for. I am wondering if i need to worry about calling a lock() statement when reading the elapsed property of a Stopwatch ...
0
votes
1answer
84 views

Synchronization of remote files download

Preamble: it's a self-assigned and pure syntetic task to learn (and remember what I already knew) C# threads and synchronization and data structures. The story: Let's say I have a dictionary ...
0
votes
2answers
28 views

lock() on the same object I'm trying to exclusively access or use separate locking object?

private class MyClass { private static MyObject myObject = new MyObject(); private void ModifyObject() { lock(myObject) { myObject.UnsafeMethod(); } ...
0
votes
2answers
60 views

How to run one function in another thread

I'm standing in front of a small (maybe not) problem. I have one function which parses XML file (very big xml ~1Gb) so it takes many time (5-6 mins to finish the func). I don't want to use it in ...
0
votes
0answers
22 views

Event not being fired when installed as Service

I'm using a plugin which can register whenever or not I plug in a fingerprint reader into the computer. This is being done by events. The event gets triggered and the reader gets added to a List. ...
-1
votes
0answers
46 views

ThreadSafe with an example [closed]

I have read Threadsafe in many places. But I am beginner to Java. I could not understand clearly about this. Can You please anyone clearly about what is thread safety and give me an example.
1
vote
3answers
41 views

Does synchronized affect object members?

If I call a object synchronized, can I access objects inside that object as if they were synchronized? Or can I only access the data types?
2
votes
1answer
64 views

NSMutableString thread safety?

I have a large NSMutableString (potentially hundreds of megabytes) and need to perform a lot of rangeOfCharacterFromSet: operations on it. To improve performance I would like to have an ...
2
votes
2answers
85 views

Thread safe global variable in Java

I am trying to understand the thread safety mechanism in java and I need some help. I have a class: public class ThreadSafe { private Executor executor = new ScheduledThreadPoolExecutor(5); ...
0
votes
1answer
57 views

Custom events in C# specifically is the sender object thread safe

Ok so I am working on implementing a set of custom events. They will primarially be used withing a multi-threaded environment to communicate major accomplishments throughout the threads. Now I have ...
0
votes
1answer
21 views

Accessing to from from thread

I have little problem with multithreading. I use CreateThread to create my own thread and create it when program starts (sorry but at this moment i cant use VCL threads). So my thread working with my ...
0
votes
2answers
48 views

What is the best approach in java to design global connection for threads? [closed]

I have one main class which runs some threads and each thread has one connection to Amazon S3 and one HTTP connection to somewhere. I cannot have inheritance in the thread class from the main class ...
1
vote
2answers
52 views

Windows socket seems to be Non Duplex

I'm writing a client-server program, where the client is C++/winapi and the server is C#/.net. the client have a loop where it reads from server (and may block the calling thread [denote t1] , which ...
0
votes
0answers
36 views

Taking Picture with Android on AsyncTask

I am trying to call camera.takePicture in a separat AsyncTask using a callback: private static class JPGCallback implements Camera.PictureCallback{ private Bitmap img; private File ...
1
vote
0answers
137 views

Single Producer / Consumer Ring Buffer in Shared Memory

Recently I've been playing about with using shared memory for IPC. One thing I've been trying to implement is a simple ring buffer with 1 process producing and 1 process consuming. Each process has ...
0
votes
0answers
65 views

Multithreading and using events

My program has three threads, and I am trying to learn about synchronization and thread safety. Below I outline what the different threads do, but I would like to learn how to use events instead to ...
0
votes
1answer
79 views

android send message to worker thread

I have a thread where I need to periodically perform some checks, get files from the web, and send messages to the main UI thread. I even need to use UI thread parameters (like the map visible area) ...
4
votes
2answers
65 views

Thread visibility among one process

I'm reading the book Crack Code Interview recently, but there's one paragraph confusing me a lot on page 257: A thread is a particular execution path of a process; when one thread modifies a ...
2
votes
3answers
68 views

Update the ConcurrentHashMap in a thread safe way

I am in the process of benchmarking few methods in my client code to see how much time those methods are taking. So I have written a Multithreading program which will spawn Multiple threads and then I ...
0
votes
2answers
64 views

Threading and locking in my program

I'm new to multithreading and having a problem with threads and locking in my program. I have simplified my problem by creating the code below private final ConcurrentLinkedQueue<String> ...
0
votes
0answers
36 views

Ensuring my program is thread safe [migrated]

I have a class which is responsible for waiting until a message is added to a message list and then sending it off to get processed withdrawMessages - waits for message. I wait a total of 2 minutes ...
-1
votes
2answers
114 views

Threading in a Windows Service

I've created an app which uses Observable Lists. I've made the ObservableList class threadsafe (I think) and it's working fine now in my application. Now I'm trying to install my application as a ...
1
vote
3answers
55 views

Should I synchronize my method?

I have defined a Synchronized ArrayList which will be accessed by multi-threads. List<Object> objList = Collections.synchronizedList(new ArrayList<Object>()); I want to define few ...
0
votes
1answer
53 views

Thread-safe: Capturing the output of $stdout

I wonder how to capture the output of $stdout in a threaded environment in ruby. A few details. I use the capture for logging purpose and I have sidekiq to process jobs in the background so the ...
3
votes
5answers
118 views

Core Data and multiple thread programming

I know this is not a new topic, but I have not found a clear answer on my problem. I am working on a project, which has a Core Data Model containing "Book". So when I downloading json data through ...
-1
votes
0answers
50 views

C# Code Not Thread Safe Leading To COM Server Exception?

I'm fairly new to C# as I spend most of my time programming in C. Now in C, you have to create threads manually, but in C# it has become quite clear that a lot of things are already done for you. ...
0
votes
1answer
38 views

Java wait and notifyAll: IllegalMonitorStateException

I am Java newbie (and RoR developer). I have a simple program. Ball is shared amont players. Ball should be passed to random Player. Ok here goes the code: class Ball { private int ...
0
votes
1answer
66 views

Which ADO.NET DataSet/DataTable Methods Are Safe For Multiple Reader Threads?

I am creating a custom cache object for data that is relatively static and is periodically updated from the DB. I have chosen to use a strongly-typed DataSet to store the cached data. Now, access for ...
0
votes
1answer
52 views

Shared variables in Thread -> Need to synchronize them?

Following code to create tasks from a big list which is split into sub lists (List l): ExecutorService executor = Executors.newFixedThreadPool(cpu); KwArrayDuration duration = new ...
0
votes
1answer
42 views

Why accessing pthread keys' sequence number is not synchronized in glibc's NPTL implementation?

Recently when I look into how the thread-local storage is implemented in glibc, I found the following code, which implements the API pthread_key_create() int __pthread_key_create (key, destr) ...
0
votes
3answers
59 views

Java Thread accessing another Thread

I have two Objects that implement the Runnable interface. Lets say i have Thread_1 and Thread_2 objects. Thread_1 has global variable myVariable; and method myMethod() which uses the myVariable ...
0
votes
1answer
34 views

Ruby: Issues running multiple threads?

Is there something wrong with running multiple threads? When I load the page using action1, it works. HomeController def action1 threads = [] threads << Thread.new {@lub = ...
1
vote
2answers
69 views

Is this ruby on rails code thread safe?

I have an issue with Logger in JRuby on Rails app. One thread changes log level to error and it does not change back. Is this code threadsafe, or should I look for other places where it is happening? ...

1 2 3 4 5 31