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:
parent
b9d8188dba
commit
9447f3df38
1 changed files with 3 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue