Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
1
vote
1answer
49 views
How to let two threads exchange data via a pointer?
I want an asynchronous thread to edit an object. Therefore I store a pointer to that object.
Data *pointer;
There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
3answers
45 views
strategy for choosing the location of mutex lock and unlock in a multithreading program
in the following code snippets, I need to protect connfd, because it can change frequently in accept() call.
void *deal_conn(void *arg){
int connfd;
connfd = *((int*)arg);
....
...
1
vote
2answers
38 views
Using pseudo-random number engines in deterministic, multi-threaded applications?
I'm trying to use the C++11 random number generators to shuffle decks of cards. I've discovered (by looking in the implementation) that the random number sequence produced by two engines are the same ...
5
votes
2answers
168 views
C++11 - can't awake a thread using std::thread and std::condition_variable
I'm stuck on a problem when trying to awake a thread by another one. A simple producer / consumer thing.
Below the code. Line 85 is the point I don't understand why it's not working. The producer ...
0
votes
1answer
23 views
QuantLib Multithreading/Concurrecy
I am fairly new to QuantLib and don't yet know all the ins and outs of the source but I was trying to test out a simple multi threaded calculation of several option's NPVs and am getting runtime ...
0
votes
2answers
25 views
timeout event design with a detached thread
I have a linked list, and I insert nodes into it frequently.
for each node, after it is inserted, an element inside the node needs to be updated in 5 seconds, if no updating happends inside the 5 ...
-4
votes
2answers
50 views
how to make a global variable with a lock that used by two threads [closed]
How to make a global variable with a lock that used by two threads? When the first thread the variable is locked and changed, after the 1st thread finished the second thread can take the variable!
0
votes
0answers
40 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
1answer
49 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
18 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 ...
0
votes
3answers
72 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
37 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 ...
2
votes
1answer
96 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
...
0
votes
2answers
40 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 ...
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
41 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
103 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 ...
1
vote
0answers
25 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 ...
-1
votes
1answer
52 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 ...
0
votes
1answer
47 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: ...
2
votes
1answer
122 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) ...
0
votes
0answers
38 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 ...
1
vote
0answers
78 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
3answers
114 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) ...
2
votes
2answers
110 views
Multithreading - don't understand the situation
var tokenSource2 = new CancellationTokenSource();
CancellationToken ct = tokenSource2.Token;
var task = Task.Factory.StartNew(() => {
...
0
votes
6answers
65 views
setBackgroundResource doesn't set the image
Handler hnd = new Handler() {
@Override
public void handleMessage(Message msg) {
int id = sequence.get(msg.arg1);
if(msg.arg1 % 2 == 0) {
...
1
vote
3answers
73 views
Creating a ConcurrentHashMap that supports “snapshots”
I'm attempting to create a ConcurrentHashMap that supports "snapshots" in order to provide consistent iterators, and am wondering if there's a more efficient way to do this. The problem is that if ...
0
votes
2answers
31 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 ...
1
vote
4answers
66 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.
...
0
votes
2answers
34 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
1answer
45 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
33 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 ...
3
votes
2answers
33 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 ...
3
votes
3answers
100 views
How do I tell how many threads a Linux binary is creating without source?
Suppose I have a generic binary without source and I want to determine whether it is running serially or spawns multiple threads.
Is there a way I can do this from the linux command line?
-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 ...
0
votes
2answers
34 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
2answers
44 views
Android TextView.setText() invoked & returned before Thread.sleep() blocks until sleep() returns. Why?
In the Android framework, if a TextView's setText() method is called, and after it returns Thead.sleep() is called, then the screen of the device does not display the given text until after sleep() ...
1
vote
0answers
54 views
How to write simple speed test app with CUDA?
Below is the code of a simple app that tests speed of my 4 core CPU with HT. I want to write as much similar app as possible that makes speed test of my GPU with CUDA functionality by using CUDA. ...
2
votes
1answer
96 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 ...
0
votes
1answer
29 views
How to start and stop a process in a java program while waiting other method start and stops every 3 seconds
hello i have a method that i want to call every 3 seconds to doing some calculations and after that the result will going on to a new method and doing its work while the first method it stops
...
0
votes
0answers
26 views
Handle openmp task as objects, save in list
I have an application where I need to create dynamically tasks inside a recursion which should be saved in a data structure (suppose list), so that other handler threads can "pick up a task from the ...
0
votes
1answer
52 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
1answer
65 views
C# sometimes freezing form when running a thread
I mentioned in an other question, that I'm working on an ffmpeg-parser with progressbar and so on.
The following problem is not 100% reproduceable. When I convert a video file with my program the ...
1
vote
2answers
33 views
MFC C++ Edit Windows Controls in Callback Function
I got stuck at this part of my project.
I have a Download dialog which when you double click listcontrol.
I create it dynamicly and its use a static pointer to a Class which handles Download/Upload ...
2
votes
2answers
90 views
Why is threading works on a single core CPU?
To better understand Threading in Java, I wrote the following code
public class SimpleRunnableTest {
public static void main(String[] args) throws InterruptedException {
long start = ...
0
votes
3answers
43 views
lock a Runnable until finished
I'm using Runnable as a loop in Android. As this:
Timer timer = new Timer();
timer.schedule(new looper(m_mainView, this),0, Rate);
Which runs every 'Rate' milliseconds.
The looper is as ...
2
votes
2answers
56 views
Progress Bar and Threads
I have this Progress Bar class (Testing threading)
public class ProgressBarUpdate
{
//Add getters and setters
static MainGUI theForm = (MainGUI)Application.OpenForms[0];
...
6
votes
4answers
92 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 ...
0
votes
2answers
25 views
Running a series of delegates with Parallel.Invoke containing calls to another appdomain
Okay I'll try and keep this short :)
Essentially what I've got is an architecture that creates a new appdomain and loads plugin assemblies into it. This is so that plugin DLLs can be hot-swappable ...
0
votes
0answers
18 views
Warning thread 0x7f5xxx terminated without calling +exit
I'm using the linux version of GCD (libdispatch) to handle multithreading in an application.
Recently the following message displayed during runtime:
Warning thread 0x7f56f40008c8 terminated without ...


