2
votes
1answer
212 views

sigsuspend() does not react against signal

My target is to intercommunicate main process and its "fork" children. Communication is done by signal delivery. My problem appears when first child gets stuck waiting when waiting for SIGUSR1 ...
0
votes
3answers
576 views

suspend pthread?

I want to implement a mutex lock. From my understanding, mutex.lock() should work like 1) check lock owner 2) if lock is owned, put thread in waiting queue 3) suspend this thread until another thread ...
3
votes
2answers
1k views

how to suspend/restart processes in C (linux)

Hi I have to write 2 fonctions for system calls that will manage the execution of task in an operating system. I couldn't find a way to suspend/restart processes. I have found a list of signals and I ...
3
votes
4answers
556 views

Function which takes a pthread as input and suspends it

I'm trying to port the real time Thread_Metric from ExpressLogic in POSIX, in order to benchmark PREEMPT_RT patches for Linux, Xenomai and RTAI for my thesis. They provide a C source file with the ...
4
votes
3answers
1k views

Suspending the execution of a remote process (C, Windows)

I can suspend a thread of another process by using SuspendThread(). Is there any way to also suspend the execution of that process altogether? If yes, please post code. Thanks. PS: Since you will ...