How can I show labels for threads, mailboxes, and semaphores in ROV?
None of the methods described in the various threads works for me:
- params.instance->name = "mytask";
- const char task[7] = "mytask" (on module level)
params.instance->name = "mytask"; - char *task;
task = malloc(7);
sprintf (task, "mytask");
params.instance->name = "mytask";
Thank you and regards
Peter