Skip to content

Commit 48a8335

Browse files
committed
Fixed taskswitch benchmark
1 parent 7a5fc66 commit 48a8335

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

usr/benchmarks/taskswitch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
// copied, modified, or distributed except according to those terms.
77

88
///////////////////////////////////////
9-
//// HERMITCORE RUST-SPECIFIC CODE ////
9+
//// HERMIT-OS RUST-SPECIFIC CODE ////
1010

1111
#include <hermit/syscall.h>
1212

1313
inline static void create_second_task(void (*entry_point)(void*))
1414
{
15-
sys_spawn(NULL, entry_point, NULL, HIGH_PRIO, 0);
15+
sys_spawn(NULL, entry_point, NULL, NORMAL_PRIO, 0);
1616
}
1717

1818
inline static void consume_task_time(void)

0 commit comments

Comments
 (0)