Files
Stefan Berger 679dcb134e [Pal] Merge Pal/test directory into Pal/regression
Move and clean up all testcases from the Pal/test directory into the
Pal/regression and add them to CI. Some of them were redundant and thus
got removed.
2020-04-08 00:58:19 +02:00

14 lines
310 B
C

#include "pal.h"
#include "pal_debug.h"
int main(int argc, char** argv, char** envp) {
long sleeping = 3000000;
pal_printf("Enter Main Thread\n");
pal_printf("Sleeping %ld microsecond...\n", sleeping);
DkThreadDelayExecution(sleeping);
pal_printf("Leave Main Thread\n");
return 0;
}