diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-24 09:37:57 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-24 14:23:50 -0400 |
commit | 3a6c1f049bb3643c86eb87f6c69cf7c3d3c95c86 (patch) | |
tree | 8793e871cc4ee1b3d3ff82b73d04c9264aaf12a9 /src/bftw.c | |
parent | 64fcb1d975e8ec8ac70f7ae8add2f7499e6fe6e9 (diff) | |
download | bfs-3a6c1f049bb3643c86eb87f6c69cf7c3d3c95c86.tar.xz |
configure: Use --with/--without for libraries
Diffstat (limited to 'src/bftw.c')
-rw-r--r-- | src/bftw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -913,7 +913,7 @@ static int bftw_state_init(struct bftw_state *state, const struct bftw_args *arg size_t qdepth = 4096; size_t nthreads = args->nthreads; -#if BFS_USE_LIBURING +#if BFS_WITH_LIBURING // io_uring uses one fd per ring, ioq uses one ring per thread if (nthreads >= nopenfd - 1) { nthreads = nopenfd - 2; |