1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

add jacobi example

This commit is contained in:
Stefan Lankes 2015-07-11 07:15:40 +02:00
parent b9d8188dba
commit 9447f3df38

View file

@ -138,6 +138,7 @@ int smp_main(void)
int main(void)
{
char* argv1[] = {"/bin/hello", NULL};
//char* argv2[] = {"/bin/jacobi", NULL};
hermit_init();
system_calibration(); // enables also interrupts
@ -159,6 +160,8 @@ int main(void)
create_kernel_task(NULL, foo, "foo1", NORMAL_PRIO);
create_kernel_task(NULL, foo, "foo2", NORMAL_PRIO);
create_user_task(NULL, "/bin/hello", argv1, NORMAL_PRIO);
//create_user_task(NULL, "/bin/jacobi", argv2, NORMAL_PRIO);
//create_user_task(NULL, "/bin/jacobi", argv2, NORMAL_PRIO);
#if 0
init_netifs();