aboutsummaryrefslogtreecommitdiff
path: root/philo_two
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-01-14 10:57:02 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-01-14 10:57:02 +0100
commit0ed344821bc3c872100a18289d0384d51af7e970 (patch)
tree8b246d0494eff661bc044aa9b8cc38bf37084efc /philo_two
parent051e5fa4382a629b76f32e46d3e766ed2eb306fc (diff)
downloadphilosophers-0ed344821bc3c872100a18289d0384d51af7e970.tar.gz
philosophers-0ed344821bc3c872100a18289d0384d51af7e970.tar.bz2
philosophers-0ed344821bc3c872100a18289d0384d51af7e970.zip
Fixing infinite wait on guacamole when calling sem_closeHEADmaster
Diffstat (limited to 'philo_two')
-rw-r--r--philo_two/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/philo_two/Makefile b/philo_two/Makefile
index ccb7ae6..daba027 100644
--- a/philo_two/Makefile
+++ b/philo_two/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/11/24 05:50:15 by cacharle #+# #+# #
-# Updated: 2021/01/08 14:31:50 by charles ### ########.fr #
+# Updated: 2021/01/14 10:56:18 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -17,7 +17,7 @@ MAKE = make --no-print-directory
COMMONDIR = ../common
CC = gcc
-CCFLAGS = -std=c99 -Wall -Wextra -Werror -O2 -I$(COMMONDIR)/inc
+CCFLAGS = -std=c99 -O2 -I$(COMMONDIR)/inc -Wall -Wextra -Werror
LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon
NAME = philo_two