summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2012-10-25 05:21:58 +0000
committerVincent Torri <vincent.torri@gmail.com>2012-10-25 05:21:58 +0000
commite082ab0e741c49fd8fee11be94f460a001befa9e (patch)
treec0fad1b4b356ddfd3bd1bddcaf6456d33de8a6f5 /m4
parent2de9c7a47bab8e3e8743c62f72c5091ad92330d6 (diff)
downloadefl-e082ab0e741c49fd8fee11be94f460a001befa9e.tar.gz
Eina: add affinity to win32 code.
It's not working yet: * eina_thread.c:152:33: error: 'index' undeclared (first use in this function) * eina_thread.c:295:4: warning: passing argument 3 of '_eina_thread_win32_create' from incompatible pointer type [enabled by default] also: * line 142, is it normal that we call eina_list_append() with tw being NULL ? * is what I did in the close_thread label correct ? SVN revision: 78416
Diffstat (limited to 'm4')
-rw-r--r--m4/efl_threads.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/m4/efl_threads.m4 b/m4/efl_threads.m4
index a1bcc0308d..bba617f955 100644
--- a/m4/efl_threads.m4
+++ b/m4/efl_threads.m4
@@ -24,6 +24,7 @@ _efl_have_win32_threads="no"
case "$host_os" in
mingw*)
_efl_have_win32_threads="yes"
+ efl_have_setaffinity="yes"
AC_DEFINE([EFL_HAVE_WIN32_THREADS], [1], [Define to mention that Win32 threads are supported])
AC_DEFINE([EFL_HAVE_THREADS], [1], [Define to mention that POSIX or Win32 threads are supported])
;;