Tagged Questions
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 ...
0
votes
1answer
33 views
options for condition variable in windows server 2003
Windows Server 2003/ Win Xp does not support condition variables, what could be other options for functionality of condition variables in win server 2003?
0
votes
1answer
49 views
Wait for all child thread to finish (in C)
Code first
while(running)
{
memset(&tcp_client, 0, tcp_client_len);
FD_ZERO(&readFDs);
FD_SET(tcp_server_s, &readFDs);
tv.tv_sec = 1;
if(select(0, &readFDs, NULL, ...
0
votes
1answer
50 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. ...
0
votes
1answer
27 views
The main form is frozen after finishing copying file (with a progress indicator) using CopyFileEx?
I have a main form, this form has a button clicking on which will show the copying window with a progressbar. I use a thread to do the copying job, however after finishing the copying (the file is ...
-2
votes
2answers
46 views
Why is the thread status dead?
That is the question. I called a function using a thread, but when I return to main control, main becomes in sleep status within a few moments.
Example (Look here is a line that calls a Win32API ...
3
votes
1answer
63 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
0answers
60 views
WaitForThreadpoolWaitCallbacks returns immediately without waiting
What am I doing wrong here that WaitForThreadpoolWaitCallbacks returns immediately without waiting?
HANDLE hEvent = CreateEvent(0, FALSE, FALSE, 0);
...
PTP_WAIT Pwa = ...
2
votes
1answer
43 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 ...
1
vote
2answers
49 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 ...
0
votes
4answers
105 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
68 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' ...
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
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 ...
1
vote
1answer
50 views
Detect window restore operation is about to begin
WM_GETMINMAXINFO is generated when maximize operation is about to begin and WM_SIZE when maximize operation is finished.
WM_SIZE is also generated when restore operation is finished.
But how to ...
2
votes
4answers
143 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 ...
4
votes
1answer
149 views
Why message loop doesn't block the GUI in windows app but does in Qt?
I'm working on a program using Qt, and some of my code is based on Windows samples. The problem I'm having, and something I don't quite understand is how the same code will block my Qt GUI while it ...
1
vote
2answers
74 views
Making unknown number of child threads inside parent thread using win32 in C?
How can I make unknown number of child threads inside parent thread and wait for each of them one by one using win32 in C?
The parent thread life time is infinite and it is wait for request and if ...
0
votes
0answers
46 views
How do Windows threads handle their parameters?
I have a class pointer, XA2SoundEngine* soundengine, that I am using to play sounds. I have created a thread system to watch and wait for the sound to finish playing so that I can delete the ...
0
votes
0answers
31 views
how much time it takes to start a separate core task procedure on windows?
lets say that I have a procedure which takes a one
millisecond to run and finish. I want to start it up
on a sperate core on windows - how many time it takes
to start such routine on a sperate thread ...
0
votes
2answers
40 views
when all thread kernel object handles is closed, does the thread still running
I'm curious that when all thread kernel object handles is closed, does the thread still running in Win32?
So I write a simple test codes like
#include <cstdio>
#include <Windows.h>
...
2
votes
1answer
56 views
Is it possible to change the default thread stacksize for a dll not under your control c++ win32
I have an application which uses a lot of threads. Most of these threads are created by third party dlls which I have no control over.
In order to reduce virtual memory usage I set the default stack ...
1
vote
1answer
47 views
Porting multithreaded window ce app to win32
I am trying to do the opposite of the usual. We have a legacy WinCE app which now needs to be ported to the Win32 platform, so that it can work as a simulator of the actual app.
I have managed to ...
0
votes
0answers
65 views
CloseHandle of windows thread
This is a fundamental question. I am working on win32 threads and C++. How does Closehandle work here in the below code? In each iteration, are 5 threads created? or only 5 threads created for whole ...
0
votes
1answer
90 views
Porting CreateThread calls to Win8 / WinRT App
I need to call a C++ library from my C# Win8/WinRT app.
The library is multithreaded and manages threads through calls to the Win32 API (WaitForSingleObject, etc.). I was able to figure out the ...
0
votes
2answers
121 views
C++ concurrency, synchronization design to avoid multiple execution issue
My code calls a function from 3rd party library. Let's call this function SomeFunc
void SomeFunc(void (*callBack) (int));
As you can see SomeFunc takes a callback function parameter. Once SomeFunc ...
0
votes
1answer
82 views
implementing pipe in C for shell with winapi
I m implementing a pipe in C for a shell I am writing, the pipe should be able to support stuff like ls | grep | grep | grep ( in other words, it should be recursive).
Shell is running on cygwin ...
0
votes
1answer
103 views
Unhandled exception linking to DLL
I have a problem when I link to a DLL I created. The exception thrown is Unhandled exception at 0x000007FA17461069 (ntdll.dll). The strange thing is that this only happens if I link the DLL in a win32 ...
0
votes
0answers
122 views
Win32 COM object consumed in a thread in C#
We have a Win32 COM object developed in Delphi XE. From our test program developed in Delphi we're able to start the COM object in a thread. When debugging we can see that the running COM object is ...
0
votes
1answer
103 views
Paasing A window Handle to a Thread in C. (WIN32 API)
I have created a Window and a Thread in my Application. Now I want the thread to process some data and display it on the Main Window.
For this purpose, I have used PostMessage() funcion inside my ...
0
votes
1answer
107 views
overhead of thread-synchronization via Events
I am experimenting with multithreaded synchronization at the moment. For a backround I have a set of about 100000 objects - possibly more - I want to process in different ways multiple times per ...
-3
votes
1answer
64 views
Can a class have multiple thread function? [closed]
I wrote a class that can do some work in another thread:
class SkeData
{
public:
SkeData(INuiSensor* pSensor);
~SkeData();
HANDLE StartSaveSkeData_Frames(int ...
0
votes
4answers
76 views
CreateNamedPipe ERROR_INVALID_NAME
Code snippet:
void RunThread(void* unused_args)
{
PSECURITY_DESCRIPTOR sdsc;
ULONG size;
ConvertStringSecurityDescriptorToSecurityDescriptor("S:(ML;;NW;;;LW)", SDDL_REVISION_1, &sdsc, ...
0
votes
1answer
114 views
Multithreading a File Map into an Array of Buffers
I'm trying to work with nasty large xml and text documents: ~40GBs.
I'm using Visual Studio 2012 on Windows 7.
I'm going to use 'Xerces' to snag the header/'footer tag' from the xmls.
I want to map ...
0
votes
2answers
212 views
Let a dll call a .exe function by sending a pointer [duplicate]
This question looks like one I asked before, except that I now know that you can't call the main function from a global object. So this code doesn't work with main. But why does it fail with other ...
0
votes
2answers
110 views
letting a DLL call a exe function with function pointer
Can anyone tell me what I'm doing wrong?
I'm trying to run a custom main on a different thread.
This is the code.
.exe
main.cpp
#include "dll_class.h"
#include <iostream>
int main(void);
...
3
votes
1answer
280 views
Why would WaitForSingleObject miss a signal?
It appears that sometimes WaitForSingleObject will wait for timeout even though the Event has been signalled.
The signalling thread receives success from SetEvent() every time. However, the thread ...
1
vote
1answer
89 views
Multithreading with a multimap
Enviroment : Windows 7.0 , C++ , Multithreading
I have created a new worker thread to receive data on socket and add it into a static multimap instance.
code snippet:
//remember mymultimap is ...
-3
votes
2answers
138 views
How to use win32 API with C# [closed]
How to connect win32 to C# and use win32 function for creating semaphore, mutex etc.
0
votes
1answer
141 views
CreateThread loop
I'm trying make asynchronous server listener with C++ .I can write simple listener without asynchronous but now i have problem with CreateThread.
For example if client has been connected console ...
0
votes
1answer
64 views
Joining and terminating a windows thread
I am trying to create a thread using windows threads as following:
HANDLE hUSBPollThread = CreateThread(
NULL,
NULL,
USBCan::CreateUSBPollLoop,
...
0
votes
1answer
37 views
Synchronize Threads with WINAPI
I would like to synchronize threads with WINAPI calls only but I have no success.
The situation is to LOG activities with time and date as soon as my WNDPROC gets a message.
The problem is that my ...
2
votes
1answer
73 views
Does a Thread Id stay unique/valid as long as any handles to the thread are open?
If I have a Win32 thread, I reference it via a handle and can also obtain it's thread ID.
The handle remains valid and usable until I close the handle, even if the thread has been terminated. ...
1
vote
1answer
82 views
Inherit Windows ThreadHandle
I just realized that it is NOT possible to Suspend/Resume/Terminate a thread OUTSIDE its own application (address space?!) if you know the right ThreadHandle Value for it... As far as I guess you will ...
0
votes
1answer
62 views
Notify a background process upon windows login
I have a C# application running in a background thread that needs to be notified when the SAME user logs in to the system .
Ex :
1 . User logs into the system
2 . User starts the application in ...
0
votes
2answers
81 views
How do I Delay destruction of my process if another thread causes it to crash on windows?
I am writing a DLL which is loaded by a proprietary program which is closed source and I have no control over. I also load a Proprietary DLL which is just as obscure. Since I sometimes have to relay ...
0
votes
1answer
74 views
EndDialog can't be called in a thread?
I want to close a Modal Dialog when the thread ends. I know how to use PostMessage or SendMessage, but why can't I directly call the EndDialog member function? If I do, it causes an App exception.
2
votes
4answers
206 views
STL Queue with two threads(Producer, Consumer)
I want the critical section for safety of queue, so that the threads don't access queue at the same time. This code works even if I comment lines related to the Critical section.
Can anyone explain ...
0
votes
2answers
222 views
C Windows winapi + multi-threading (HANDLE)_beginthreadex fail
This code ruined all my day. Basically I have a list of 50 webservers I administrate, I want to check them if up/alive (isAlive() function), I parse my webservers.txt file with the 50 ips/hostnames ...
2
votes
1answer
177 views
How do I create interruptible sleep in Windows with C?
I want the current thread to sleep for a given time. However, another thread should be able to interrupt it and wake it up early. In unix this is fairly simple using sleep + pthread_kill. In windows ...







