diff options
author | Keith Packard <keithp@keithp.com> | 2013-11-20 11:22:04 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-11-20 14:14:58 -0800 |
commit | e390e3aaee3dace2a1e6cfe66efd884fc256b0f0 (patch) | |
tree | c9445900402899bca8e6beb6e6d2560d77954629 /test | |
parent | daa78ee9a5f9b5590d540aa06466d6728fb2c795 (diff) |
Provide pthread-based alternative implementation
This uses pthread mutexes and condition variables instead of futexes.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index c67014a..57bf1ae 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -5,5 +5,5 @@ TESTS=$(check_PROGRAMS) xshmfence_test_SOURCES = xshmfence_test.c xshmfence_test_CFLAGS = -I$(top_srcdir)/src -xshmfence_test_LDADD = $(top_builddir)/src/libxshmfence.la +xshmfence_test_LDADD = $(top_builddir)/src/libxshmfence.la @PTHREAD_LIBS@ |