mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-17 21:59:06 +00:00
34 lines
458 B
C
34 lines
458 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "types.h"
|
|
#include "emu_general.h"
|
|
|
|
u32 hc_atomic_dec (u32 *p)
|
|
{
|
|
return p[0]--;
|
|
}
|
|
|
|
u32 hc_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;
|
|
}
|