all ops done; without synchronization
This commit is contained in:
parent
30ad265779
commit
ebe57f783d
4 changed files with 117 additions and 31 deletions
12
Makefile
12
Makefile
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue