python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Stop/continue a C program
In my C program, I want to get the PID of the process, send a SIGSTOP to that and wait until a SIGCONT arrives from another terminal. So, the procedure looks like
int pid_t = getpid();
printf("PI...
mahmood
Votes: 0
Answers: 1
Continuous wavelets transform
I am trying to attempt plot a real, imaginary, phase, and modulus of a wavelets coefficient. The mother wavelets i am using is morlet. Down below is my signal
dt = 0.001
sampling_rate = 1000
K = 3
t =...
Tùng Võ
Votes: 0
Answers: 0
SIGINT with getchar()
I'm new to C and am attempting to write a minishell program that should stop the child process (as a result of a fork to run exec) or jump back to the start of the loop (print out [currentdir/]> an...
Curious George
Votes: 0
Answers: 1
Returning from a signal handler without going the kernel + userspace interrupts
This is a followup on my older question: Returning from a signal handler via setcontext
I tried to write the assembly for doing the context switch from a signal handler back to the interrupted context...

Petr Skocik
Votes: 0
Answers: 0