コード例 #1
0
ファイル: main.c プロジェクト: guoqingzhang/CCode-coffee
int main()
{
test_getpid();
test_lcd();
//test_conmov();
//test_structarray();
//test_interrupt();
test_timer();


//p = (int*) ((int)shared_space | 0x100000);
//*p = 15; 

}
コード例 #2
0
ファイル: client.c プロジェクト: seL4/camkes
int run(void) {
    test_madvise();

    test_mincore();

    test_mlock();

    test_munlock();

    test_mlockall();

    test_munlockall();

    test_getpid();

    test_getppid();

    /* Run tests in other component. */
    other_call();

    printf("All OK\n");
    return 0;
}
コード例 #3
0
int main(int argc, char **argv)
{
	test_getpid();
	return 0;
}