This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdio> | |
| #include <Veil.h> | |
| NTSTATUS NTAPI print(PVOID arg); | |
| #define NTHREAD 8 | |
| struct _THREAD_ARG { | |
| LONG volatile g_Counter; | |
| HANDLE KeyedEvent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdio> | |
| #include <Veil.h> | |
| NTSTATUS NTAPI print(PVOID arg); | |
| #define NTHREAD 8 | |
| struct _THREAD_ARG { | |
| LONG volatile g_Counter; | |
| HANDLE ThreadId; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #include <liburing.h> | |
| #include <unistd.h> | |
| #include <linux/futex.h> | |
| #define QUEUE_DEPTH 64 | |
| #define BUFFER_SIZE (64 * 1024) | |
| #define BLOCK_SZ 4096 | |
| #define WAIT_NR 64 |
OlderNewer