This commit is contained in:
2025-02-11 10:16:05 +03:00
parent 163188a814
commit 3a07a9b5ed
7 changed files with 111 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
a.out
a.exe
+11
View File
@@ -0,0 +1,11 @@
echo -n "File: "
read file
while true
do
clear && gcc $file && ./a.out
echo "----------------"
echo "Programm ended."
echo "----------------"
read _
done
+11
View File
@@ -0,0 +1,11 @@
echo -n "File: "
read file
while true
do
clear && x86_64-w64-mingw32-gcc $file && wine a.exe
echo "----------------"
echo "Programm ended."
echo "----------------"
read _
done
+26
View File
@@ -0,0 +1,26 @@
#include <stdio.h>
#include <stdlib.h>
#include "../libs/threads.h"
void* task() {
while (1) {
printf("Background task running\n");
wait(1);
}
return NULL;
}
int main() {
void* thread_handle;
start_thread(&thread_handle, task);
printf("Main program continues\n");
wait(5);
kill_thread(thread_handle);
printf("Background task killed\n");
return 0;
}
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
#include "../libs/time.h"
int main() {
printf("Wait 5 seconds...\n");
wait(5);
return 0;
}