all ops done; without synchronization

This commit is contained in:
Semere M. Mebrahtom 2026-03-24 20:16:27 +01:00
parent 30ad265779
commit ebe57f783d
Signed by: semere
GPG key ID: 7FC937214DF30488
4 changed files with 117 additions and 31 deletions

View file

@ -6,7 +6,7 @@ INCLUDES = coders/codexion.h
OBJS = $(SRCS:.c=.o)
CC = cc
CFLAGS = -Wall -Wextra -Werror
CFLAGS = -Wall -Wextra -Werror -pthread
all: $(NAME)
@ -16,8 +16,16 @@ $(NAME): $(OBJS)
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
# number_of_coders
# time_to_burnout
# time_to_compile
# time_to_debug
# time_to_refactor
# number_of_compiles_required
# dongle_cooldown
# scheduler
test: $(NAME)
./$(NAME) 0 1 2 3 4 5 6 7
./$(NAME) 10 2000 500 200 300 5 50 1
clean:
rm -f $(OBJS)