Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).

learn more… | top users | synonyms (8)

2
votes
2answers
1k views

Create a Windows Form from a background Thread

I'm developing a VS Package and I have this problem: I have a Background-Thread which checks every few seconds for specific changes that have to be done. This includes changing the GUI of VS 2010, ...
0
votes
0answers
35 views

Qt: is it OK to do long job in the other thread's event loop

I need to implement a form with buttons and log widget, and when button is pressed, some long job should start in the other thread. Details of the process should be echoed to the log. Two jobs ...
0
votes
3answers
62 views

how to send data from thread to main activity java android

I have a thread that i want to make some calculations and after that send it to the main activity of my program. how i can do that? the thread is class RemindTask extends TimerTask { public ...
0
votes
1answer
46 views

difference between the value returned by pthread_self() and gettid()

according to my understanding, the TID(thread id) returned by gettid() is unique inside a process(or inside a program with multiple processes, while each process may have multiple threads), namely, ...
0
votes
1answer
32 views

JGit: Is there a thread safe way to add and update files

The easy way to add or update files in JGit is like this: git.add().addFilepattern(file).call() But that assumes that the file exists in the Git working directory. If I have a multi-threaded ...
0
votes
1answer
16 views

communication between threads in java

I have Java server for the device communication with that server. when a particular device requests server creates a separate thread with the unique name this name will never change. I have many ...
6
votes
5answers
3k views

How to make a thread sleep for specific amount of time in java?

I have a scenario where i want a thread to sleep for specific amount of time. Code: public void run(){ try{ //do something Thread.sleep(3000); //do ...
1
vote
0answers
59 views

Calculating matrix determinant

I am trying to calculate the determinant of a matrix (of any size), for self coding / interview practice. My first attempt is using recursion and that leads me to the following implementation: ...
2
votes
1answer
92 views

Aquire Singleton class Instance Multithread

To get the instance of the class with Singleton pattern, I want use the following function: This is a sketch interface uses SyncObjs; type TMCriticalSection = class(TCriticalSection) private ...
-1
votes
1answer
46 views

C++ HashMap with multi-threading support [duplicate]

I have a need to use a HashMap/ HashTable implementation in C++ and i have the following requirements 1- When new data is being inserted in the hashmap the complete hashmap is not locked, and other ...
3
votes
3answers
106 views

Threads Multithreading

The question is as follows: Three threads are started simultaneously as follows: t1.start(); t2.start(); t3.start(); The output of the first thread(t1) should be the input to the second thread(t2) ...
0
votes
2answers
31 views

Dining philosophers and mutex initialization

I am trying to solve dining philosophers problem.So I pretty much made entire code but the problem is that I can't initialize monitors(i've made pseudocode which I re-written in c++) so really I can't ...
1
vote
4answers
61 views

what is the value range of thread and process id?

fork and pthread_create will return a process id or thread id. But I don't know the value range of these ids. Now I want to make a lookup table, in each entry there is a item/field for thread id. ...
407
votes
5answers
28k views

C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?

C++11 introduced a standardized memory model, but what exactly does that mean? And how is it going to affect C++ programming? Herb Sutter says here that, The memory model means that C++ code ...
0
votes
2answers
273 views

Spring 3.X Java 7 Thread Safe Date/Number Format injection

Hi guys can anyone help me out. I currently have a service class that I might have to use in a mutithreaded application can anyone help make the format classes I am using to be thread safe using ...
0
votes
1answer
47 views

Number of processor ticks for thread

I need to know how many ticks of processor used by thread knowing its thread id. Because processor in PC is a synchronous device, if my thread is working, it takes processor time. I need to see what ...
1
vote
1answer
449 views

Getting java.lang.IllegalStateException: This call must happen in the AWT Event Dispatch Thread! Please refer to

Iam trying to implement web browser using swing . Here is code below. import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.GridBagConstraints; import java.awt.Insets; import ...
0
votes
1answer
46 views

Class Property inside Class On Separate Thread

I have a host class which launches an instance of another class on a new thread like so: I am referencing this MSDN article according to which, Class2.P1 should NOT be null. LINK: ...
1
vote
4answers
403 views

File writing and reading objects using Threads

I have a main thread from which we start two subsequent threads that perform file writing and file reading operations respectively.I have another class called orderDetails with attributes and its ...
0
votes
1answer
33 views

agent based programming using native programming language

so basically I am interested in building an agent-based simulation of a battleground. There are a lot of frameworks for agent-based models such as JADE, etc.. but due to certain constraint, I can ...
1
vote
1answer
36 views

Pass arguments to CreateThread() via struct and change a member for following threads without affecting the previous threads?

This one is doing my head in. I'm trying to multithread in my c++ code. I put all of my (many) arguments into a struct struct ARGS{ //argument definitions }; ARGS funcArgs = //function arguments ...
1
vote
2answers
90 views

Java multithreading: positioning of methods

I've written a plugin for a program which logs the activity of the user. If the user presses a button and thus triggering an action, some stuff should be written to the database. This process should ...
3
votes
2answers
3k views

qt thread with movetothread

I'm trying to create a program using threads: the main start with a loop. When a test returns true, I create an object and I want that object to work in an other thread then return and start the test ...
2
votes
2answers
311 views

Calling Shell32.dll from .NET Windows Service

I have a .NET 4.0 library that uses Shell32 and Folder.GetDetailsOf() to get metadata from WTV files. I have used it successfully with Console and Windows Forms apps without issue. But for some ...
0
votes
2answers
31 views

In MQ v6 api - how to stop MQQueue get() method?

I'm writing a simple Java application using MQ v6 API classes Right now I'm able to browse a remote queue in while cycle. This program runs as windows service, and must be interrupted then the ...
1
vote
0answers
20 views

Caching issue with Hibernate EhCache

Our project is using Hibernate 3.0 for DB access. We are using 2nd level cache and query cache to cache the queries and entities.EhCache is used for caching purpose. The DAO method getData() fetches ...
2
votes
1answer
95 views

Strange 0x0eedfade exception in Delphi multi thread program

I have strange problem with my multi threaded server. It is Windows service and works similar to FTP server managing socket connection to many clients. It was created using Delphi 2006 (Turbo Delphi) ...
3
votes
2answers
29 views

Several threads writing the same data on a buffer: are there consistent arguments stating that it is dangerous?

Imagine a situation in which several threads can write on a certain buffer (no restrictions on its size) and all of these constraints apply: Before all the threads start, the buffer is initialized ...
2
votes
2answers
108 views

Multithreading - don't understand the situation

var tokenSource2 = new CancellationTokenSource(); CancellationToken ct = tokenSource2.Token; var task = Task.Factory.StartNew(() => { ...
2
votes
4answers
249 views

Sharing a resource among Threads, different behavior in different java versions

This is the first time I've encountered something like below. Multiple Threads (Inner classes implementing Runnable) sharing a Data Structure (instance variable of the upper class). Working: took ...
0
votes
1answer
49 views

BackGroundWorker only allowing two threads at one time [closed]

Okay folks, Gonna drop a lot of code here for this problem since I am new to multithreading and I don't want to leave anything out. The problem: I have a UserControl from which I am downloading ...
0
votes
0answers
34 views

Which is better for parallel processing of upto 64 channels of data in a GUI application, Juce or Qt? [closed]

From what I've been told, Juce implements this using socket programming, which is out of date compared to Qt which uses semaphores and more modern techniques. Apologies for any inaccuracies in ...
6
votes
4answers
87 views

Java - Stop a long running thread which accesses database or something

I start couple of threads, but I do not have their references to stop by signalling or something. For example, I can't pass a variable like running=false to those threads, because I do not have their ...
8
votes
1answer
153 views

Which Unix don't have a thread-safe malloc?

I want my C program to be portable even on very old Unix OS but the problem is that I'm using pthreads and dynamic allocation (malloc). All Unix I know of have a thread-safe malloc (Linux, *BSD, Irix, ...
0
votes
3answers
1k views

Is there a way to change max number of threads can be created on OS X 10.6 by JVM?

According to this stackoverflow post, there is a limit on Mac OS X 10.6 for how many threads can be created by JVM or any application. The limit can be displayed by running following command in ...
0
votes
2answers
32 views

Server-Client NTP project - NullPointerException/SocketException issues

I have this code about a Server-Client NTP project I'm working on... and I get a "java.lang.NullPointerException" when I run it... -NullPointerException fixed... I initialize the socket but I get ...
0
votes
2answers
60 views

Executing a function that accesses global array on multiple threads

I have a function 'graph1' that calls another function as shown below. When I call graph1threader(copy, date); I get the answer I want, however this takes upwards of 30 seconds, so I tried using ...
0
votes
2answers
29 views

Pass paramater to thread's method

In this example I cannot pass a value to the method that is being used to run multiple threads. private void btnStartSingleHost_Click(object sender, EventArgs e) { for (int i = 0; i ...
10
votes
7answers
3k views

Why is double-checked locking broken in Java?

It's stated that fields assignment is always atomic except for fields of long or double. But, when I read an explaination of why double-check locking is broken, it's said that the problem is in ...
3
votes
1answer
343 views

Parse XML into CoreData on Background Thread to not lock up UI

My application parses an xml file into coredata to populate a uitableview. When I trigger a refresh it should go and download a new xml file, parse it on a background thread, and then save it all at ...
-6
votes
0answers
98 views

how to perform asynchronous operation in a single thread? [closed]

Is it possible to perform asynchronous operation in a single thread?If yes,how?
0
votes
1answer
41 views

C++11 thread support in Qt Creator 2.7.0 (Qt 5.0.2)

I am trying to make threads work in Qt Creator under Ubuntu. I set the QMAKE_CXXFLAGS += -std=c++11 -pthread -lpthread CXXFLAGS += -std=c++11 -pthread -lpthread but it still wont work and will ...
0
votes
0answers
32 views

ThreadPool performance overheads

I'm doing a little project which implies parallelism. I cannot use System.Threading.Threads, cause they are nearly impossible to recycle (and my job is in small pieces, so I need recycling). I didn't ...
0
votes
2answers
229 views

Do I need to build TinyThread++?

I've extracted the sources from the zip file at the website and put them in Code::Blocks' 'include' folder, but even then it cannot compile the provided 'hello.cpp' example. (For reference:) ...
-2
votes
0answers
30 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 ...
-2
votes
1answer
16 views

NTP project in java [closed]

I'm sort of making a Network Time Protocol (NTP) project in java and I'm asked to make at least 3 clients connect to a server and get time with fixed delay and stuff. My question is how can i make a ...
1
vote
1answer
158 views

How do you loop a thread?

I have a thread containing a runnable. I need this to loop infinitely unless cancelled by the user. I have no idea how to go about this. All help is greatly appreciated. Cheers.
0
votes
2answers
32 views

Sockets, Threads and file discriptors in Linux

I'm having some trouble with a program I wrote for Linux (some kind of a server), I'm getting the infamous "Too many open files" error. Up until now I have thought it is a matter of sockets, but, ...
0
votes
3answers
79 views

iOS multithreading synchronization

I am building an iOS app which does some heavy lifting on a background thread. I create my thread using dispatch_queue_t backgroundQueue; backgroundQueue = dispatch_queue_create("MyQueue", ...
2
votes
1answer
92 views

multiple threads in for each loop

I am currently implementing a task that consumes lot of time for the execution.So, I have opted for threading. But I have a foreach loop in my thread in which I want to create multiple threads. I was ...

1 2 3 4 5 747