fix: signal gestion

This commit is contained in:
Camille Chauvet 2023-04-14 13:05:08 +00:00
parent 37bd3efc98
commit 058c96849b

View File

@ -6,7 +6,7 @@
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/21 12:45:16 by cchauvet #+# #+# */
/* Updated: 2023/04/14 12:41:02 by cchauvet ### ########.fr */
/* Updated: 2023/04/14 13:04:01 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
@ -51,7 +51,6 @@ static bool ft_executor(t_data *data, t_cmd *cmd, char **env)
if (cmd->pid == 0)
{
signal(SIGQUIT, SIG_DFL);
signal(SIGKILL, SIG_DFL);
signal(SIGINT, SIG_DFL);
dup2(cmd->fd_in[0], 0);
dup2(cmd->fd_out[0], 1);