mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
29 lines
465 B
C
29 lines
465 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>
|
|
#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
|