int main(void)
{
	test_mincore(1);
	test_mincore(2);
	test_mincore(DEFAULT_STRLEN + 1);

	puts("+++ exited with 0 +++");
	return 0;
}
Exemplo n.º 2
0
Arquivo: client.c Projeto: 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;
}