2016-09-07 09:16:31 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-07 09:16:31 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _AFFINITY_H
|
|
|
|
#define _AFFINITY_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2016-09-07 09:42:05 +00:00
|
|
|
#include <stdarg.h>
|
2016-09-07 09:16:31 +00:00
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (_POSIX)
|
2016-09-07 09:16:31 +00:00
|
|
|
#include <pthread.h>
|
2016-11-29 21:39:22 +00:00
|
|
|
#if defined (__linux__)
|
2016-09-07 09:24:21 +00:00
|
|
|
#include <sys/sysctl.h>
|
2016-11-29 21:39:22 +00:00
|
|
|
#endif // __linux__
|
2016-09-07 09:16:31 +00:00
|
|
|
#endif // _POSIX
|
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (__APPLE__)
|
2016-09-07 09:24:21 +00:00
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#include <mach/mach.h>
|
2016-10-08 21:38:34 +00:00
|
|
|
#include <mach/thread_policy.h>
|
2016-09-07 09:24:21 +00:00
|
|
|
#endif // __APPLE__
|
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (_WIN)
|
2016-09-07 09:16:31 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#endif // _WIN
|
|
|
|
|
2016-10-08 21:38:34 +00:00
|
|
|
int set_cpu_affinity (hashcat_ctx_t *hashcat_ctx);
|
2016-09-07 09:16:31 +00:00
|
|
|
|
|
|
|
#endif // _AFFINITY_H
|