mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
32 lines
533 B
C
32 lines
533 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _AFFINITY_H
|
|
#define _AFFINITY_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
#if defined (_POSIX)
|
|
#include <pthread.h>
|
|
#if defined (__linux__)
|
|
#include <sys/sysctl.h>
|
|
#endif // __linux__
|
|
#endif // _POSIX
|
|
|
|
#if defined (__APPLE__)
|
|
#include <mach-o/dyld.h>
|
|
#include <mach/mach.h>
|
|
#include <mach/thread_policy.h>
|
|
#endif // __APPLE__
|
|
|
|
#if defined (_WIN)
|
|
#include <windows.h>
|
|
#endif // _WIN
|
|
|
|
int set_cpu_affinity (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
#endif // _AFFINITY_H
|