From: Steven Scholz <steven.scholz@domain.hid>
To: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-core] rt_task_create() hangs ?
Date: Thu, 01 Feb 2007 15:04:01 +0100 [thread overview]
Message-ID: <45C1F351.6080109@domain.hid> (raw)
In-Reply-To: <45C1EA10.9060109@domain.hid>
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
Hi Gilles,
>> I now tested Gille's brand new adeos-ipipe-2.6.19-arm-1.6-01.patch. The
>> above problems disapeared. I even do see a "Xenomai: POSIX: destroyed
>> thread" now.
>>
>> So is this a known bug of ipipe-1.5 vs ipipe-1.6?
>> Or does anyone remember a bug like that?
>
> I do not think there is such a known bug. There were some recent fixes
> in the native skin, but as far as I remember they were for anonymous
> objects. In any case, as Philippe already told you, it is hard to say
> anything without seeing any code.
Did he? I never saw that mail. :-(
However I attach the file that hangs when starting it for the second time.
PLEASE NOTE: I just found that the programm runs fine again and again even
under 2.6.14 iff I deselect CONFIG_XENO_HW_FPU. With CONFIG_XENO_HW_FPU=y it
will hang...
So I am now suspecting that it would hang with your new
adeos-ipipe-2.6.19-arm-1.6-01.patch as well...
Problem is: I can only compile your patch with FPU disabled! Otehrwise he
complains about a missing fp_init() !!!
BTW: Is CONFIG_XENO_HW_FPU intended for HW floating point support!? Or for
floating point emulation done by the kernel? NWFPE? Are there actually ARM
cpus with HW FPU?
> As for the posix skin messages about
> objects destruction, they only appear if an option is selected in the
> kernel configuration. Are you sure this option was enabled when you did
> not see the messages ?
Yes I am.
--
Steven
[-- Attachment #2: threadtest1.c --]
[-- Type: text/plain, Size: 1384 bytes --]
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <sys/mman.h>
#include <native/task.h>
#define STATE_TASK_1_CREATED 1
#define STATE_TASK_2_CREATED 2
unsigned int my_state = 0;
RT_TASK task_1;
RT_TASK task_2;
/* .................................................................................... */
void cleanup_all(void) {
if (my_state & STATE_TASK_2_CREATED) {
printf("delete task_2\n");
rt_task_delete(&task_2);
my_state &= ~STATE_TASK_2_CREATED;
}
if (my_state & STATE_TASK_1_CREATED) {
printf("delete task_1\n");
rt_task_delete(&task_1);
my_state &= ~STATE_TASK_1_CREATED;
}
}
/* .................................................................................... */
int main(int argc, char* argv[]) {
int ret = 0;
/* no memory-swapping for this programm */
mlockall(MCL_CURRENT | MCL_FUTURE);
/* create task_1 */
ret = rt_task_create(&task_1,"task_1",0,50,0);
if (ret) {
printf("failed to create task_1, code %d\n",ret);
goto error;
}
my_state |= STATE_TASK_1_CREATED;
printf("created task_1\n");
/* create task_2 */
ret = rt_task_create(&task_2,"task_2",0,51,0);
if (ret) {
printf("failed to create task_2, code %d\n",ret);
goto error;
}
my_state |= STATE_TASK_2_CREATED;
printf("created task_2\n");
error:
cleanup_all();
return ret;
}
next prev parent reply other threads:[~2007-02-01 14:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-24 13:32 [Xenomai-core] rt_task_create() hangs ? Steven Scholz
2007-01-25 23:29 ` Philippe Gerum
2007-01-30 10:27 ` Gilles Chanteperdrix
2007-02-01 13:07 ` Steven Scholz
2007-02-01 13:24 ` Gilles Chanteperdrix
2007-02-01 14:04 ` Steven Scholz [this message]
2007-02-02 9:59 ` Gilles Chanteperdrix
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=45C1F351.6080109@domain.hid \
--to=steven.scholz@domain.hid \
--cc=gilles.chanteperdrix@xenomai.org \
--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.