mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 03:23:58 +00:00
11 lines
187 B
C
11 lines
187 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <linux/unistd.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
syscall(__NR_membarrier, 0/*query*/);
|
|
fprintf(stderr, "Done.\n");
|
|
return 0;
|
|
}
|