A piece of code is thread-safe if it only manipulates data structures in a way that allows consistent execution of this code by multiple threads. A code may be thread safe, conditionally safe (mutual exclusion required) or unsafe (can only be safely used by one thread).

learn more… | top users | synonyms (1)

-2
votes
0answers
27 views

Cancel all running Tasks

I have a few tasks running and I want to close/cancel/abort them all without crashing my application. Is this possible? I have created tasks like this: tasks[c] = Task.Factory.StartNew(() => ...
5
votes
4answers
78 views

Imagine a real concurrent scenario where StringBuffer should be used than StringBuilder?

I know the difference between StringBuffer and StringBuilder. read here! And generally, as the javadoc says, Where possible, it is recommended that this class be used in preference to ...
-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
1answer
30 views

Need to deploy single threaded in memory store

Using Asp.Net 4/c# I want to store a list of items in memory (I use the term list generically) rather than list. I need to maintain a last used date for items in the list. Effictively I need to ...
0
votes
1answer
33 views

Is there a guarantee that no signals are delivered from a different thread after QObject::disconnect()?

I am not thinking of the problem that queued signals are still delivered in the receiving thread after disconnect(), instead: Consider the case that a Sender object is generating signals in thread 1 ...
-1
votes
1answer
26 views

Best Data Structure? - 2 Threads, 1 producer, 1 consumer

What is the best data structure to use to do the following: 2 Threads: 1 Produces (writes) to a data structure 1 Consumes (reads and then deletes) from the data structure. Thread safe Producer and ...
-2
votes
0answers
16 views

Is the shared object being published safely?

Please have a look at the main() method of the following producer consumer solution : http://java67.blogspot.in/2012/12/producer-consumer-problem-with-wait-and-notify-example.html. It doesn't look ...
1
vote
3answers
44 views

Is GList (glib-doubly-linked-list) thread safe?

In a multi-threaded C program I used GList functionality of GLib (https://developer.gnome.org/glib/2.35/glib-Doubly-Linked-Lists.html#g-list-append) where multiple threads created their own lists. I ...
0
votes
0answers
30 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 ...
1
vote
1answer
19 views

Boost:condition_variable.notify_one() causes segmentation fault 11 exception

I'm trying to run an example of websocket++ that consists in receive messages from websocket clients and broadcast to all connected clients, but i having problems with thread synchronization. In the ...
-2
votes
0answers
31 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
3answers
44 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
3answers
85 views

Locking a mutex in a destructor in C++11

I have some code which need to be thread safe and exception safe. The code below is a very simplified version of my problem : #include <mutex> #include <thread> std::mutex mutex; int ...
0
votes
1answer
25 views

Restlet thread safety and Google App Engine

I am using Restlet 2.1.2 on Google App Engine and I am thinking about its thread safety. <threadsafe> is set to true in my GAE's configuration. In general, there are concurrency notes in the ...
1
vote
1answer
29 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
1answer
25 views

How to configure Netty to have a single worker thread?

Let's assume that we're implementing a service that accesses some shared data, and that there is no way of partitioning those data into portions that can be accessed independently. For this reason, ...
0
votes
1answer
19 views

Change data source dynamically on user login

I have a project that has the following requeriments: Allow users to login in the same Web Application using different schemas following a criteria; Dynamically route the datasource against a rule - ...
0
votes
0answers
66 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: ...
2
votes
2answers
50 views

Thread Safety - declaring a new thread inside method local block

I am curious if the following code is thread-safe: public static void methodA () { // given that mutableObject is not thread-safe (no lock/synchronization used) MutableObject mo = new ...
0
votes
1answer
22 views

how to queue or buffer a series of commands in thread safe manner?

I am sending several command messages through UDP port. how can i queue them in a background safe thread while the program continues its service.. the commands i want to send are like this: ...
-2
votes
0answers
28 views

This might be an alternative to locks. Why does it not work, or how is this technique called? [closed]

Test-and-set and compare-and-swap instructions (and the semaphores and mutexes built on top of them) can take far longer to be processed than ordinary instructions, which is time wasted at the expense ...
0
votes
2answers
61 views

How do I make a static class thread-safe?

I have a simple simple logging class that is STATIC. However, it's definitely not thread safe as every call attempts to write to the same file. I get these exceptions: The process cannot access the ...
1
vote
1answer
52 views

Thread safe associative container

I have a map which looks like this: std::map<int, class A*> m. I have two threads: one of them is reading m and updating the values of the object contained and the other one is reading and ...
0
votes
0answers
24 views

Axis2 Stub not working properly in concurrent cases

I am using Axis Stub to send soap requests to a server. I find that when two threads send the soap request at the same time, then only the same request is sent twice to the server (the request made by ...
7
votes
2answers
69 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 ...
1
vote
0answers
23 views

int v = n; is this atomic in gcc?

Here's an example of atomic counter But I think it is unsafe. Codes: volatile int i; int get_value() { return i; } int set_value(int x) { i = x; } I know about the gcc atomic builtin, but 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 ...
4
votes
1answer
47 views

Thread block based on input of a function

I got in situation where I have to synchronized function based on input. for example. There is function. func(int a)--- this function can be called by many threads I want to block threads if they are ...
0
votes
2answers
41 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 ...
0
votes
1answer
19 views

Delphi, message handler and global variables thread-safety

I have one messagehandler in the form like this: procedure TMain_Form.form_message_handler(var MSG: TMessage); begin case MSG.WParam of 0: global_variable:=10; 1: ...
0
votes
0answers
26 views

Is java.text.BreakIterator thread-safe in openjdk?

I ran into some weird threading issues in a continuous integration build on travis-ci and got: testThatDifferentArgumentsCanBeParsedConcurrently(se.softhouse.jargo.concurrency.ConcurrencyTest) ...
0
votes
4answers
39 views

I want to test if lazy initialization is thread-safe

I want to test if lazy initialization is thread-safe, so my code is below: package LazyInit; import java.util.Random; public class UnThreadSafeLazyInit { private ExpensiveObject instance = ...
1
vote
1answer
53 views

Android, Thread, Cannot unregister SensorEventListener

I seem to be having the same problem as this gentleman: SensorEventListener doesn't get unregistered with unregisterListener() method public void onCreate(Bundle bundle) { ...
0
votes
2answers
28 views

Thread safe singleton and inner class solution

This is how I always created a thread-safe singleton, in order to use it in a multi-threading app. public class Logger { private Logger() {} private static Logger instance = new Logger(); ...
0
votes
1answer
36 views

Django Celery - How to start a task with a delay of n - seconds - countdown flag is ignored

In my Django project I'm running some asynchronous tasks using Celery (docs), Django-Celery and RabbitMQ as the broker. Whereas it works in general, I have two problems with my setup: a) the task ...
1
vote
2answers
31 views

is DatagramSocket.send thread safe?

I'm planning to use an instance of DatagramSocket and call its send method from different threads... to send UDP packets to different clients. Is the method thread safe i.e. calling this method from ...
3
votes
1answer
48 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 ...
1
vote
1answer
100 views

Critical section in reading data by threads

I have two different threads (beside main thread). The first one sends to the main thread PostMessage with data. As a result of receiving the message main thread modifies the corresponding global ...
1
vote
3answers
57 views

Confirmation of thread safety with std::unique_ptr/std::shared_ptr

My application has an IRC module that essentially is a normal client. Since this is heavily threaded, I stand the risk of a plug-in retrieving, for example, a users nickname - it is valid at the time, ...
-3
votes
1answer
78 views

Is the List<T> variable thread safe in my code

I have the following static class. Rule is a custom type. Please confirme that this approach is thread safe for the variable listToUpdate which I am passing to each of my rule generating static ...
0
votes
2answers
50 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
52 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 ...
1
vote
3answers
47 views

Is it acceptable and safe to pthread_join myself?

I've got a setup something a bit like this: void* work(void*) { while (true) {/*do work*/} return 0;} class WorkDoer { private: pthread_t id; public: WorkDoer() { pthread_create(&id, ...
5
votes
2answers
90 views

Are unresettable “flags” threadsafe in C#/.NET?

(Note: I already asked this question, but the answer was specific to Java, and so I am asking the same question for C# and the .NET framework. It is NOT a duplicate.) I have been using this pattern ...
0
votes
1answer
42 views

Can't get String from GUI thread to 'logic' thread in java

I've been writing a program that searches through a list of numbers to find the ones that add up to a certain other number. No problems there, the algorhythm is, while probably not very efficient, ...
0
votes
1answer
77 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
27 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(); } ...
1
vote
3answers
59 views

What are the ways to safely increment an integer?

Are there any other methods to make a thread-safe integer incrementation than using a synchronised method or an AtomicInteger?
0
votes
1answer
30 views

Are unresettable “flags” threadsafe in Java?

I have been using this pattern for a while, but I only recently came to think that it might not be OK to do this. Basically, I use some variant of this pattern: public class SampleJavaAsync { ...
-1
votes
0answers
53 views

Thread safety critique requested for a Bounded Buffer C++11 implementation [closed]

I am trying to create a concurrent Bounded Buffer based loosely off of an article I read here. I wish to use this design as IPC communication channel between 2 threads (this is why you will see ...

1 2 3 4 5 69