diff options
author | bpc2003 <wpesfriendnva@gmail.com> | 2025-03-21 10:55:56 -0400 |
---|---|---|
committer | bpc2003 <wpesfriendnva@gmail.com> | 2025-03-21 10:55:56 -0400 |
commit | a269ad1f5f09573830f2344297e289921a4f4f7a (patch) | |
tree | c77b810ac942bdccf45276b54cc41bca6239eb7a /Makefile | |
parent | d1eb4277100d5ef08d6768d394660e89bf656250 (diff) |
Made batch operations thread and memory safe
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,8 +14,8 @@ lib: $(BUILD) test: dev_lib $(CC) src/test.c $(D_FLAGS) -g $(C_FLAGS) -o $(BUILD)/test.out - valgrind --leak-check=full ./$(BUILD)/test.out - valgrind --tool=helgrind ./$(BUILD)/test.out + valgrind --leak-check=full ./$(BUILD)/test.out 2> dbg + valgrind --tool=helgrind ./$(BUILD)/test.out 2>> dbg rm -rf $(BUILD) dev: dev_lib |