up
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user