From: Jan Kiszka <jan.kiszka@domain.hid>
To: "M. Koehrer" <mathias_koehrer@domain.hid>
Cc: Xenomai <xenomai@xenomai.org>
Subject: [Xenomai-help] Re: What happens if task entry function returns?
Date: Fri, 17 Nov 2006 11:59:59 +0100 [thread overview]
Message-ID: <455D962F.3070001@domain.hid> (raw)
In-Reply-To: <9656043.1163758677000.JavaMail.ngmail@domain.hid>
M. Koehrer wrote:
> Hi!
>
> I am just playing around with Xenomai to understand it.
> And I have one question concerning the entry function that will be called from
> rt_task_start (Native API).
> What happens if this entry function reaches its end or a return within the function is
> called?
>
> I have made a simple example that lead to strange effects.
> In my example (see complete C Code in attachement) I create to tasks
> that do the same.
> The entry functions look like:
>
> void taska(void *cookie)
> {
> RTIME delay;
> int i;
> printf("Hi, I am task A %s\n", (char*)cookie);
> delay = 100000;
>
> for (i=0; i<200; i++)
> {
> rt_task_sleep(delay);
> }
>
> printf("This is the end of A\n");
> // rt_task_delete(0);
> }
> When I do not place the rt_task_delete(0) at the end of the function
> my second task will never reach the end with the second printf.
> Whenever I use rt_task_delete(0) at the end of the function it works perfectly.
Quite inconsistent, sounds like a bug. Does the second rt_task_join just
rush through and main terminates?
>
> My question is now: What happens if the task's entry function returns?
pthread_exit() is invoked implicitly, which implies rt_task_delete(NULL).
>
> Thanks for any feedback on that question.
Is this issue SMP-related? What happens if you force all your tasks to
the same CPU? Or if you run on a !CONFIG_SMP box?
Jan
next prev parent reply other threads:[~2006-11-17 10:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-17 10:17 [Xenomai-help] What happens if task entry function returns? M. Koehrer
2006-11-17 10:59 ` Jan Kiszka [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-11-17 12:14 [Xenomai-help] Re: " M. Koehrer
2006-11-17 13:58 ` [Xenomai-help] " Jan Kiszka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=455D962F.3070001@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=mathias_koehrer@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.