Skip to content

Commit

Permalink
task_create missing from QEMU knsh64
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen committed Feb 12, 2024
1 parent 3650251 commit 45dbe5c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions examples/leds/leds_main.c
Expand Up @@ -236,9 +236,11 @@ int main(int argc, FAR char *argv[])
return EXIT_SUCCESS;
}

ret = task_create("led_daemon", CONFIG_EXAMPLES_LEDS_PRIORITY,
CONFIG_EXAMPLES_LEDS_STACKSIZE, led_daemon,
NULL);
// TODO: task_create missing from QEMU knsh64
// ret = task_create("led_daemon", CONFIG_EXAMPLES_LEDS_PRIORITY,
// CONFIG_EXAMPLES_LEDS_STACKSIZE, led_daemon,
// NULL);
ret = led_daemon(argc, argv); ////
if (ret < 0)
{
int errcode = errno;
Expand Down

0 comments on commit 45dbe5c

Please sign in to comment.