threads and frames

This commit is contained in:
T0b1
2023-06-02 16:54:00 +02:00
parent ac3718b12b
commit ec2eeb10f7
12 changed files with 665 additions and 17 deletions

BIN
tmp/main

Binary file not shown.

View File

@@ -1,5 +1,11 @@
#include <stdint.h>
#include <unistd.h>
int main(int argc, char* argv[]) {
int tmp = 10;
while (tmp != 0) {
sleep(1);
tmp--;
}
return 0;
}