X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fposix%2FOSThreads.c;h=343536e0632436448e982e5dee304d2055e9bfb6;hb=d108044bef62f6a0d579c92ced5e8188f72edc2d;hp=f15fc95c3a28146794c6ab5f85623c17aead9048;hpb=31caec794c3978d55d79f715f21fb72948c9f300;p=ghc-hetmet.git diff --git a/rts/posix/OSThreads.c b/rts/posix/OSThreads.c index f15fc95..343536e 100644 --- a/rts/posix/OSThreads.c +++ b/rts/posix/OSThreads.c @@ -13,9 +13,17 @@ #define _GNU_SOURCE #endif +#include "PosixSource.h" + +#if defined(freebsd_HOST_OS) +/* Inclusion of system headers usually requires __BSD_VISIBLE on FreeBSD, + * because of some specific types, like u_char, u_int, etc. */ +#define __BSD_VISIBLE 1 +#endif + #include "Rts.h" + #if defined(THREADED_RTS) -#include "OSThreads.h" #include "RtsUtils.h" #include "Task.h" @@ -23,6 +31,11 @@ #include #endif +#if defined(darwin_HOST_OS) || defined(freebsd_HOST_OS) +#include +#include +#endif + #if !defined(HAVE_PTHREAD_H) #error pthreads.h is required for the threaded RTS on Posix platforms #endif @@ -31,6 +44,19 @@ #include #endif +#if defined(HAVE_SYS_CPUSET_H) +#include +#include +#endif + +#ifdef HAVE_UNISTD_H +#include +#endif + +#if defined(darwin_HOST_OS) +#include +#endif + /* * This (allegedly) OS threads independent layer was initially * abstracted away from code that used Pthreads, so the functions @@ -194,6 +220,10 @@ getNumberOfProcessors (void) nproc = sysconf(_SC_NPROCESSORS_ONLN); #elif defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_CONF) nproc = sysconf(_SC_NPROCESSORS_CONF); +#elif defined(darwin_HOST_OS) || defined(freebsd_HOST_OS) + size_t size = sizeof(nat); + if(0 != sysctlbyname("hw.ncpu",&nproc,&size,NULL,0)) + nproc = 1; #else nproc = 1; #endif @@ -202,13 +232,13 @@ getNumberOfProcessors (void) return nproc; } +#if defined(HAVE_SCHED_H) && defined(HAVE_SCHED_SETAFFINITY) // Schedules the thread to run on CPU n of m. m may be less than the // number of physical CPUs, in which case, the thread will be allowed // to run on CPU n, n+m, n+2m etc. void setThreadAffinity (nat n, nat m) { -#if defined(HAVE_SCHED_H) && defined(HAVE_SCHED_SETAFFINITY) nat nproc; cpu_set_t cs; nat i; @@ -216,12 +246,50 @@ setThreadAffinity (nat n, nat m) nproc = getNumberOfProcessors(); CPU_ZERO(&cs); for (i = n; i < nproc; i+=m) { - CPU_SET(n, &cs); + CPU_SET(i, &cs); } sched_setaffinity(0, sizeof(cpu_set_t), &cs); -#endif } +#elif defined(darwin_HOST_OS) && defined(THREAD_AFFINITY_POLICY) +// Schedules the current thread in the affinity set identified by tag n. +void +setThreadAffinity (nat n, nat m GNUC3_ATTRIBUTE(__unused__)) +{ + thread_affinity_policy_data_t policy; + + policy.affinity_tag = n; + thread_policy_set(mach_thread_self(), + THREAD_AFFINITY_POLICY, + (thread_policy_t) &policy, + THREAD_AFFINITY_POLICY_COUNT); +} + +#elif defined(HAVE_SYS_CPUSET_H) /* FreeBSD 7.1+ */ +void +setThreadAffinity(nat n, nat m) +{ + nat nproc; + cpuset_t cs; + nat i; + + nproc = getNumberOfProcessors(); + CPU_ZERO(&cs); + + for (i = n; i < nproc; i += m) + CPU_SET(i, &cs); + + cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID, -1, sizeof(cpuset_t), &cs); +} + +#else +void +setThreadAffinity (nat n GNUC3_ATTRIBUTE(__unused__), + nat m GNUC3_ATTRIBUTE(__unused__)) +{ +} +#endif + #else /* !defined(THREADED_RTS) */ int