mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
34 lines
452 B
C
34 lines
452 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "types.h"
|
|
#include "emu_general.h"
|
|
|
|
u32 atomic_dec (u32 *p)
|
|
{
|
|
return p[0]--;
|
|
}
|
|
|
|
u32 atomic_inc (u32 *p)
|
|
{
|
|
return p[0]++;
|
|
}
|
|
|
|
size_t get_global_id (u32 dimindx __attribute__((unused)))
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
size_t get_local_id (u32 dimindx __attribute__((unused)))
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
size_t get_local_size (u32 dimindx __attribute__((unused)))
|
|
{
|
|
return 0;
|
|
}
|