diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-13 02:27:17 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-13 02:27:17 +0100 |
commit | 2d2772341fa65e3d412e76c6e9d4a8815756c0ec (patch) | |
tree | 8bee446efe0fb6e4939a2bf4cf865b6897e50e1a /lib/sqfs/Makemodule.am | |
parent | 514e9e500abdd8ea91ea3b2fca214587ee24a342 (diff) |
Merge windows and pthread thread pool implementations
Since they are both structured the same way using condition variables,
they are only a few defines away from removing code duplication.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/Makemodule.am')
-rw-r--r-- | lib/sqfs/Makemodule.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqfs/Makemodule.am b/lib/sqfs/Makemodule.am index 228d3e9..2bc0fa3 100644 --- a/lib/sqfs/Makemodule.am +++ b/lib/sqfs/Makemodule.am @@ -43,11 +43,11 @@ libsquashfs_la_SOURCES += lib/sqfs/unix/io_file.c endif if HAVE_PTHREAD -libsquashfs_la_SOURCES += lib/sqfs/data_writer/pthread.c +libsquashfs_la_SOURCES += lib/sqfs/data_writer/winpthread.c libsquashfs_la_CPPFLAGS += -DWITH_PTHREAD else if WINDOWS -libsquashfs_la_SOURCES += lib/sqfs/data_writer/windows.c +libsquashfs_la_SOURCES += lib/sqfs/data_writer/winpthread.c else libsquashfs_la_SOURCES += lib/sqfs/data_writer/serial.c endif |