summaryrefslogtreecommitdiff
path: root/contrib/getdents-debug/getdents_c/Makefile
diff options
context:
space:
mode:
authorJakob Unterwurzacher2020-06-21 11:59:08 +0200
committerJakob Unterwurzacher2020-06-21 12:01:34 +0200
commit77632b7554000f2e832a0e9fded1a3894b2502c3 (patch)
treeb9a45e1ca80431c884f3e87e4d6bbfef5a9c2482 /contrib/getdents-debug/getdents_c/Makefile
parent6aa9f5636f03392b5da5fc19dc4ea908e2e55e26 (diff)
getdents_c: read from two threads
This was an attempt to make the C code more similar to Go (which also reads from multiple threads). However, I still could not repro the ENOENT problems. https://github.com/rfjakob/gocryptfs/issues/483
Diffstat (limited to 'contrib/getdents-debug/getdents_c/Makefile')
-rw-r--r--contrib/getdents-debug/getdents_c/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/getdents-debug/getdents_c/Makefile b/contrib/getdents-debug/getdents_c/Makefile
index 95e47dc..1a9d4d2 100644
--- a/contrib/getdents-debug/getdents_c/Makefile
+++ b/contrib/getdents-debug/getdents_c/Makefile
@@ -1,2 +1,2 @@
getdents_c: *.c Makefile
- gcc getdents.c -o getdents_c
+ gcc getdents.c -lpthread -o getdents_c