1
vote
1answer
33 views

Network resources for TCP connections in python [Windows]

Not sure if I have myself a problem with a python script I'm using. Basically, it spawns threads, each creating a tcp connections. Well the script finishes, i even check if any threads are still ...
0
votes
1answer
38 views

unhandled read exception in thread after passing class into thread

http://pastebin.com/QPab6nkp is all my code, pretty messy and unfinished. I found where is an error - i think im passing philosophist exemplar into thread incorectly, because into the thread, ...
0
votes
1answer
99 views

i get thread sleep error in C++11 threading

I created a thread using C++11 thread class and I want the thread to sleep in a loop. When the this_thread::sleep_for() function is called, I get exception saying: Run-Time Check Failure #2 - ...
1
vote
0answers
35 views

How terminate all threads of a program, with external variable like ON/OFF

i use 4 threads to elaborate a series of images from sequential queues. The threads starts togheter, and works like a assembly line: Thread 1 push image on queue1 Thread 2 elaborate from queue1 and ...
1
vote
1answer
33 views

Updating Queue and deleting desired contents from the Queue

I am stuck in a really confusing situation here therefore, I am going to explain the whole scenario. I have developed a UDP Server/ multiple Client appplication. The Server has a main Receiving ...
1
vote
1answer
40 views

TerminateThread() returns error when terminating the thread

I have a ThreadA created using the CreateThread function. Inside ThreadA, another thread, ThreadB is created using the CreateThread function. Now, I want to terminate ThreadB from ThreadA but the ...
0
votes
1answer
36 views

Multithreading with Windows Store Applications

We are currently creating a Windows Store Application which gains information from an RSS feed and inputs this information into an ObservableCollection. The issue we are having is when the information ...
3
votes
1answer
183 views

The maximum number of thread [duplicate]

What is the maximum number of thread in an application 32-bits and 64-bits developed in Delphi? I need to know what is the limit of threads running simultaneously on a 32-bit application, because I'm ...
0
votes
1answer
73 views

Synchronization issues in two Threads Sharing a Queue for Reading and Writing using Critical Section

I have two threads on my Server, one Worker thread and one Receiving Thread. There is a shared Queue containing list of all active Clients for this Server i.e. Queue has IP and Port Number of each ...
0
votes
2answers
76 views

Win32 API deadlocks while using different threads

I am experience deadlock while trying to use WIN32 API from additional thread. The additional thread is needed in my application to improve Frame Rate. It actually helps, however, I get deadlocks in ...
1
vote
3answers
50 views

x number of threads sending data to Server for displaying output on GUI

I have developed a single server/multiple client TCP Application. The client consists of x number of threads each thread doing processing on its own data and then sending the data over TCP socket to ...
3
votes
2answers
68 views

How do I use WaitForMultipleObjects to balance competing work?

I'm using WaitForMultipleObjects in an IPC situation, where I have one process writing data to either or both of two memory mapped files and another process that picks up that data as it's updated. ...
2
votes
1answer
43 views

Windows socket write() is blocked by a read() unexpectedly

(this is an updated repost of a previously asked question, posted with old account which I've lost the credentials for) I'm writing a client-server program, where the client is C++/winapi and the ...
0
votes
1answer
29 views

Tool displaying processor or core assignment for process in Windows?

In Windows 7, is there a tool that will allow me to see the cpu/core to which a process has been assigned for a recent timeslice under windows? I need to demonstrate that a particular application's ...
0
votes
1answer
85 views

Synchronizing a thread with two running threads, c++, windows

I am a newbie in multithread programming and this is my first post here! So please bear with me. I have two cameras which I would like to track an object simultaneously (two independent threads) ...
1
vote
1answer
45 views

Pass arguments to a thread while resuming it. (WINAPI)

I have a thread(Thread 1) which suspends another thread(Thread 2). After sometime, Thread1 resumes Thread2, but I want to pass a structure from Thread 1 to Thread 2 when Thread 1 resumes Thread 2. ...
0
votes
0answers
31 views

Problems with Boost using eclipse

I'm trying to write a programm with boost in C++ using Eclipse. Eclipse itself works fine with C++ and MinGW. So I installed boost: I ran "bjam.exe --toolset=gcc --build-type=complete" to configure ...
0
votes
1answer
42 views

Windows 64 bit application with ever growing thread count

I have a Windows 64 C++ application which acquires data from a custom USB device. It is built using Qt 4.8. It works fine and there are no , repeat no memory leaks that I can see. However, I did ...
0
votes
1answer
76 views

Background worker blocking UI when using web service call

For some reason when i put a long running web service call (doesn't matter if its a legacy one or WCF) in a background thread it seems to be locking up the UI main thread. I cant see anything wrong ...
0
votes
2answers
44 views

PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core? [closed]

Look at my code in this post: How to write simple speed test app with CUDA? This time I'm not about the CUDA, but the code of application that is in the post. The issue I want to face is that the ...
1
vote
2answers
56 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 ...
0
votes
2answers
103 views

Thread-safe CreateThread?

Is the PrintHello() function pthreads example thread-safe? I find these kind of examples online but I don't understand how they can be thread-safe. On the other hand, if I add a mutex around the code ...
0
votes
1answer
53 views

Threading in C with CreateThread()

I am very much a novice to C, and I am trying to make a program to run MIDI sequences, and basically, I have two functions, both running a different MIDI pattern, and I need them to run in parallel. ...
2
votes
2answers
104 views

What is the best way to use threads for database operations?

I'm developing a WinForms application with SQL Compact as main database. I was told i would NEVER mess with the UI Thread, every operation needs to be done outside the UI Thread.. going by this speech ...
3
votes
1answer
85 views

CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()

I have created 3 threads each thread has one socket each. Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated. The code works ...
2
votes
1answer
53 views

Unable to create multiple threads using for loop

I am trying to create 3 threads using a for loop. Following is my code snippet: DWORD WINAPI ThreadProc0(LPVOID param) { return 0; } DWORD WINAPI ThreadProc1(LPVOID param) { return 0; } DWORD ...
3
votes
1answer
86 views

Cross Process Event - Release all waiters reliably

I have created a cross process event via ManualResetEvent. When this event does occur potentially n threads in n different processes should be unblocked and start running to fetch the new data. The ...
1
vote
2answers
61 views

Access a spawned process's TIB through FS register?

I'd like to access a spawned process's TIB (I created the process with CreateProcessW successfully). I have obtained a pointer to the spawned process's TIB through: GetThreadContext (with ...
3
votes
2answers
36 views

Threads state after the program finishes execution

What happens to internal threads after the main thread finishes execution? E.G: Program 1 creates 5 threads to run in background. Program 1 crashes. Are those threads alive? They will get ...
0
votes
2answers
62 views

What is the maximum number of thread that can be created ? Does system configuration need to be considered when multiThreading [closed]

What is the maximum thread that i can create for my algorithm ? Does system configuration need to be considered when i use MultiThreading ? My Hardware : Intel(R) Core (TM)2 Duo CPU E8400 @3.00 GHz ...
0
votes
4answers
122 views

Can two Threads use same Thread Procedure?

Is it possible for two threads to use a single function "ThreadProc" as its thread procedure when CreateThread() is used? HANDLE thread1= CreateThread( NULL, //Choose default security ...
-4
votes
1answer
90 views

How to create multiplethreads each with different ThreadProc() function using CreateThread()

I have successfully created a single thread using CreateThread(). Now I want to create 'n' number of threads but each with a different ThreadProc(). I have tried the following code but using it, 'n' ...
-2
votes
4answers
71 views

Overhead of thread creation and deletion v/s unused threads

For developing a udp server that can handle maximum 'x' number of clients at a time, I have two options: When the server is started, 'x' threads are created immediately without chechking if all the ...
0
votes
0answers
31 views

Can a multithreaded app survive a thread termination on Windows

We've seen this a couple of times now. We have an application with 5-20+ threads pop up a dialog telling us there has been a fatal exception. This app has no dialog code in it, so the dialog is ...
1
vote
2answers
68 views

Windows Service: The calling thread cannot access this object because a different thread owns it

Trying to convert XML files using XSL and printing the output. However, receiving the following message: The calling thread cannot access this object because a different thread owns it. To set an ...
2
votes
1answer
161 views

Thread not terminated while application is terminated under Delphi

assume I have a thread which is still running when the application is terminating (This thread can not terminate because it waits for a Windows api call to return and that can be long...) What ...
0
votes
0answers
126 views

C# and unmanaged DLL: avoiding NullReferenceException caused by multiple threads

I am attempting to create a C# application to host automated word games in an ancient social MMO called VZones. Many similar existing applications use a DLL file called wadapi.dll, whose code is ...
1
vote
2answers
86 views

Multithreading library that can share pointer data safely?

Basically what I want to achieve is to share a dynamically allocated array of state flags among different threads to control the interactions between threads. Are there any library that can achieve ...
2
votes
4answers
153 views

Can multithreading be implemented on a single processor system? [closed]

I have always followed the concept that multithreading can only be implemented on multiple processors system where there are more than one processor to be assigned to each thread and each thread can ...
1
vote
1answer
80 views

How do you check if DateTime is initialized?

I need help with making a code that checks every second if Datetime is started. If it is started it should close the already running function. I know dispatchertimer but I want it to run the thread in ...
1
vote
0answers
68 views

Exception in thread and stack trace shows call to _endthreadex

I am currently debugging a crash in one of my applications and stumbled up on something that looks a bit odd to me. In my application I start several threads using _beginthreadex function. At some ...
2
votes
2answers
49 views

when a windows thread need a message loop and why?

When do I need a message loop in an windows application? For example, for a windows service do I need a message loop for every thread that I created or just for the main servide process? ...
0
votes
0answers
19 views

Thread cancellation points poin in WIndows [duplicate]

Does anyone know how to set a cancellation points on Windows? Linux provides some API pthread_setcanceltype etc. I am looking for alternative APIs on Windows.
0
votes
1answer
60 views

Why can't you access Windows GUI from a background thread?

I know that in a Windows application background threads are not allowed to directly access GUI items. What I don't fully understand is why. The closest explanation I have found is this one: Access ...
1
vote
1answer
77 views

Possible alogrithms of handling 40 clients in a single udp server

I am working on udp server/cient application. I want my Server to be able to handle 40 clients at a time. Right now I am using the approach of creating one receiving thread which continuously receives ...
0
votes
1answer
45 views

How can I configure the Windows' “GUI is not responding” dialog?

In these rare cases where a long I/O operation is performed with a possibly corrupted disk, I change the mouse cursor to Hour Gloss. However if the user keeps clicking, the windows shows the "GUI is ...
0
votes
1answer
44 views

HttpWebRequests slowing down, or timing out

Introduction I'm making an application that crawls files/websites for proxy ips/ports. The implementation is purely asynchronous, to make it flow with the speed I want. The whole purpose of the ...
0
votes
5answers
94 views

Safe thread termination

Worker thread handles database updates. When application ends I want to terminate it but without letting it to leave db inconsistent. So I use flags before each significant db operation. After a ...
0
votes
2answers
53 views

c++ multithreading errors and SOCKET

void* sendFirstReq(SOCKET Socket){ char buffer[10000]; string mybuf("GET /gbot/gate.php?page=ident&os="); if(getenv("windir") != NULL){ mybuf += ...
0
votes
0answers
59 views

Windows Multi Timer: Why Timer callback function execute time-out can cause another timer became mess? (deep in Timer implementation mechanism )

Here is my source code: #include <windows.h> #include <iostream> using namespace std; #pragma comment(lib, "winmm.lib") UINT videoTimerID; UINT audioTimeID; static void ...

1 2 3 4 5 15