mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-03 20:31:40 +00:00
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.
14 lines
310 B
C
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;
|
|
}
|