From 296178913c5dfbc2b35842fc16ed680ef51fd402 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 5 Apr 2015 17:05:57 -0400 Subject: nt32: initial commit of core port files. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information. --- src/thread/nt32/pthread_equal.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/thread/nt32/pthread_equal.c (limited to 'src/thread/nt32/pthread_equal.c') diff --git a/src/thread/nt32/pthread_equal.c b/src/thread/nt32/pthread_equal.c new file mode 100644 index 0000000..a8fcd79 --- /dev/null +++ b/src/thread/nt32/pthread_equal.c @@ -0,0 +1,6 @@ +#include "../pthread_equal.c" + +int __pthread_equal_impl(pthread_t a, pthread_t b) +{ + return thrd_equal(a,b); +} -- cgit v1.2.3