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>
|
|
|
|
*/
|
|
|
|
|
2021-12-13 13:58:19 +01:00
|
|
|
#include <stdio.h>
|
2023-02-05 09:06:14 +01:00
|
|
|
#include <stdlib.h>
|
2021-12-13 13:58:19 +01:00
|
|
|
|
2023-02-05 09:06:14 +01:00
|
|
|
void
|
|
|
|
reset_procmask(void) {
|
2021-12-12 11:35:35 +01:00
|
|
|
printf("STUB: %s:%d", __FILE__, __LINE__);
|
|
|
|
}
|
|
|
|
|
2023-02-05 09:06:14 +01:00
|
|
|
int
|
|
|
|
get_fake_if(void *ctx) {
|
2023-02-01 19:30:44 +01:00
|
|
|
(void)ctx;
|
2021-12-12 11:35:35 +01:00
|
|
|
printf("STUB: %s:%d", __FILE__, __LINE__);
|
|
|
|
return 0;
|
|
|
|
}
|
2023-02-05 09:06:14 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
system_shutdown(void) {
|
|
|
|
exit(0);
|
|
|
|
}
|