I cannot understand why, in the following program, when a SIGINT signal arrives, the thread terminates directly (even if not covered by the signal handler). However, this does not happen in the main()
process.
Signal handler:
volatile sig_atomic_t termina = 0;
static void sigHandler()
{
termina = 1;
}
thread function:
static void *clientFun(void *fdSkt_comF)
{
int fdSkt_com = *((int *) fdSkt_comF);
char buffer[DIM_BUFFER];
memset(buffer, '\0', DIM_BUFFER);
//"termina" is set to 1 by the signal handler when a signal arrives
while (termina == 0)
{
int lenghtRead;
RETURN_SYSCALL(lenghtRead, read(fdSkt_com, buffer, DIM_BUFFER), "Errore: read(fdSkt_com, buffer, DIM_BUFFER)")
if(lenghtRead == 0)
break;
//lenghtRead conta tutti i caretteri letti (compreso il '\0' se è presente)
for(int i = 0; i < lenghtRead-1; i++)
{
buffer[i] = toupper((unsigned char) buffer[i]);
}
SYSCALL(writen(fdSkt_com, buffer, lenghtRead), "writen(fdSkt_com, buffer, lengthBuffer)")
}
puts("Ciao");
return NULL;
}
where:
#define RETURN_SYSCALL(r,c,e) if((r=c)==-1) { perror(e);exit(errno); }
#define SYSCALL(c,e) if(c==-1) { perror(e);exit(errno);}
thread creation and detach:
pthread_t clientId;
THREAD_CREATE(&clientId, NULL, &clientFun, (void *) &fdSkt_com, "Thread setId")
SYSCALL_ZERO(pthread_detach(clientId) , "pthread_detach(&clientId)");
if you want to check all the code: server.c: https://pastebin.com/6BQA3mx6
client.c: https://pastebin.com/e42hKPxj
utils.h: https://pastebin.com/hLbySeFF
conn.h: https://pastebin.com/fL5cMxcg