umka/windows/thread.c

28 lines
434 B
C
Raw Permalink Normal View History

2022-06-27 19:36:56 +02:00
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>
#include <stdlib.h>
void
reset_procmask(void) {
2021-12-12 11:35:35 +01:00
printf("STUB: %s:%d", __FILE__, __LINE__);
}
int
get_fake_if(void *ctx) {
(void)ctx;
2021-12-12 11:35:35 +01:00
printf("STUB: %s:%d", __FILE__, __LINE__);
return 0;
}
void
system_shutdown(void) {
exit(0);
}