From: "Michael Löffler" <ml+xenomai@domain.hid>
To: xenomai@xenomai.org
Subject: [Xenomai-core] Bug in rt_task_sleep() ?
Date: Fri, 27 Nov 2009 23:15:50 +0100 [thread overview]
Message-ID: <4B104F96.5090200@domain.hid> (raw)
Hello List!
I have an application running rt_task_sleep() in a loop. After a more or
less random number of loops, something up to 5000 cycles, the system
reboots with the following error message:
Kernel panic - not syncing:
BUG!
<4>BUG: failure at kernel/ipipe/core.c:319/__ipipe_restore_root()!
For me it's not a bigger issue, as I can replace it with usleep() and
everything works fine, but maybe it's something, someone could have a
closer look at. On my system (blackfin537-stamp, uclinux2008, xenomai
2.4.0) it can be reproduced with the following code:
#include <stdio.h>
#include <unistd.h>
#include <rtdm/rtdm.h>
#include <native/task.h>
#include <linux/delay.h>
RT_TASK _rtTask;
int main(int argc, char *argv[]) {
rt_task_shadow(&_rtTask, "whatever", 1, 0);
rt_task_set_mode(0, T_PRIMARY, NULL); // primary
uint32_t n = 0;
while (1) {
printf("Loop %u OK. Waiting....\n", n++);
rt_task_sleep(100000000); // 500MHZ -> 0.2s
//usleep(100000);
}
}
next reply other threads:[~2009-11-27 22:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-27 22:15 Michael Löffler [this message]
2009-11-28 8:25 ` [Xenomai-core] Bug in rt_task_sleep() ? 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=4B104F96.5090200@domain.hid \
--to=ml+xenomai@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.