Tagged Questions
5
votes
3answers
254 views
using a sigint from ctrl-c
alright, so i'm using a sighandler to interpret some signal, for this purpose it is ctrl-c, so when ctrl-c is typed some action will be taken, and everything is fine and dandy, but what I really need ...
5
votes
4answers
490 views
Catching signal inside its own handler
#include<stdio.h>
#include<signal.h>
void handler(int signo)
{
printf("Into handler\n");
while(1);
}
int main()
{
struct sigaction act;
act.sa_handler = handler;
...
3
votes
1answer
264 views
catching SIGINT in a multithreaded program
I am writing a multithreaded program where I want to handle a possible Ctrl-C command from the user to terminate execution. As far as I know there is no guarantee that the main thread, which is able ...
2
votes
2answers
350 views
segmentation fault in a simplistic shell
I am writing code for a simplistic c shell. It stores the history of the last 10 command. If 'r' is entered as a command, then it should run the most recent command from the history. Also, if 'r x' is ...
2
votes
2answers
1k views
Ignoring ctrl-c
I'm trying to write a shell and I'm at the point where I want to ignore ctrl-c.
I currently have my program ignoring SIGINT and printing a new line when the signal comes, but how can I prevent the ^C ...