Skip to content

Instantly share code, notes, and snippets.

View Schabernack's full-sized avatar

Nicolas Neu Schabernack

View GitHub Profile
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
void signalHandler(int sig){
switch(sig){
case SIGUSR1:
printf("\nSIGUSR1 erhalten \n");
break;