Убран time.h где он не нужен
This commit is contained in:
parent
ccd43f25c7
commit
6bbd07c028
@ -2,11 +2,12 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "../libs/threads.h"
|
#include "../libs/threads.h"
|
||||||
|
#include "../libs/time.h"
|
||||||
|
|
||||||
void* task() {
|
void* task() {
|
||||||
while (1) {
|
while (1) {
|
||||||
printf("Background task running\n");
|
printf("Background task running\n");
|
||||||
wait(1);
|
wait(1000);
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -16,7 +17,7 @@ int main() {
|
|||||||
start_thread(&thread_handle, task);
|
start_thread(&thread_handle, task);
|
||||||
|
|
||||||
printf("Main program continues\n");
|
printf("Main program continues\n");
|
||||||
wait(5);
|
wait(5000);
|
||||||
|
|
||||||
kill_thread(thread_handle);
|
kill_thread(thread_handle);
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "time.h"
|
|
||||||
|
|
||||||
void start_thread(void** thread_handle, void* (*task)(void*)) {
|
void start_thread(void** thread_handle, void* (*task)(void*)) {
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
Loading…
Reference in New Issue
Block a user