Fix attach nOS-V RT test
The nosv_attach() function no longer needs a the type argument.
This commit is contained in:
parent
0a534f6c46
commit
ae7ef21014
@ -12,14 +12,8 @@ main(void)
|
|||||||
{
|
{
|
||||||
nosv_init();
|
nosv_init();
|
||||||
|
|
||||||
nosv_task_type_t type;
|
|
||||||
if (nosv_type_init(&type, NULL, NULL, NULL, "adopted", NULL,
|
|
||||||
NULL, NOSV_TYPE_INIT_EXTERNAL)
|
|
||||||
!= 0)
|
|
||||||
die("nosv_type_init failed");
|
|
||||||
|
|
||||||
nosv_task_t task;
|
nosv_task_t task;
|
||||||
if (nosv_attach(&task, type, 0, NULL, 0) != 0)
|
if (nosv_attach(&task, NULL, NULL, 0) != 0)
|
||||||
die("nosv_attach failed");
|
die("nosv_attach failed");
|
||||||
|
|
||||||
sleep_us(100);
|
sleep_us(100);
|
||||||
@ -27,9 +21,6 @@ main(void)
|
|||||||
if (nosv_detach(0) != 0)
|
if (nosv_detach(0) != 0)
|
||||||
die("nosv_detach failed");
|
die("nosv_detach failed");
|
||||||
|
|
||||||
if (nosv_type_destroy(type, 0) != 0)
|
|
||||||
die("nosv_type_destroy failed");
|
|
||||||
|
|
||||||
if (nosv_shutdown() != 0)
|
if (nosv_shutdown() != 0)
|
||||||
die("nosv_shutdown failed");
|
die("nosv_shutdown failed");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user