diff options
author | Jakob Unterwurzacher | 2020-06-21 11:59:08 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2020-06-21 12:01:34 +0200 |
commit | 77632b7554000f2e832a0e9fded1a3894b2502c3 (patch) | |
tree | b9a45e1ca80431c884f3e87e4d6bbfef5a9c2482 /contrib/getdents-debug/getdents_c/Makefile | |
parent | 6aa9f5636f03392b5da5fc19dc4ea908e2e55e26 (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/Makefile | 2 |
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 |