31 lines
1.2 KiB
C
31 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* signal_handler.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/02 13:22:14 by maiboyer #+# #+# */
|
|
/* Updated: 2024/08/03 16:34:19 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "app/signal_handler.h"
|
|
#include "me/types.h"
|
|
#include "signal.h"
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
t_error install_signal(void)
|
|
{
|
|
struct sigaction data;
|
|
|
|
data = (struct sigaction){};
|
|
data.sa_handler = SIG_IGN;
|
|
if (sigaction(SIGINT, &data, NULL))
|
|
return (ERROR);
|
|
if (sigaction(SIGQUIT, &data, NULL))
|
|
return (ERROR);
|
|
return (NO_ERROR);
|
|
}
|