From: "M. Koehrer" <mathias_koehrer@domain.hid>
To: xenomai@xenomai.org
Subject: [Xenomai-help] Howto catch SEGV signals in Xenomai
Date: Tue, 13 Mar 2007 15:51:45 +0100 (CET) [thread overview]
Message-ID: <11906791.1173797505269.JavaMail.ngmail@domain.hid> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 1836 bytes --]
Hi all,
I have a problem to catch segment violations with Xenomai:
For demonstration I use the following program:
------------------------------------------
#include <stdio.h>
#include <sys/mman.h>
#include <native/task.h>
#include <native/sem.h>
RT_TASK taska_desc;
volatile int *pointer = 0;
void mytaska(void *cookie)
{
int i;
for (i=0; i < 50; i++)
{
rt_task_sleep(50000000);
if (i > 20)
{
*pointer = 123;
}
printf("Hello %i\n", i);
}
printf("Hi, this is task A\n");
}
int main(void)
{
mlockall(MCL_CURRENT|MCL_FUTURE);
rt_task_create(&taska_desc, "mytaska", 0, 81, T_JOINABLE);
rt_task_start(&taska_desc, &mytaska, NULL);
rt_task_join(&taska_desc);
printf("Main: A joined\n");
return 0;
}
---------------------------------------
Whenever i is greater than 20 a segment violation occurs, as I must not write
to address 0 (the pointer is always NULL).
However, what happens is, that my system freezes after printing out 18 or 19.
I have to reset the PC to continue.
When I write a printf() directly before the invalid assignment I get the usual linux
"segmentation fault" error message.
How can I catch a signal in a Xenomai real time task?
I am running Xenomai 2.3.0 + NOCOW patch.
I have enclosed the .c file and a Makefile in a .tgz file.
Thanks for any feedback on that issue
Regards
Mathias
~
~
--
Mathias Koehrer
mathias_koehrer@domain.hid
Viel oder wenig? Schnell oder langsam? Unbegrenzt surfen + telefonieren
ohne Zeit- und Volumenbegrenzung? DAS TOP ANGEBOT JETZT bei Arcor: günstig
und schnell mit DSL - das All-Inclusive-Paket für clevere Doppel-Sparer,
nur 39,85 inkl. DSL- und ISDN-Grundgebühr!
http://www.arcor.de/rd/emf-dsl-2
[-- Attachment #2: signal.tgz --]
[-- Type: application/octet-stream, Size: 697 bytes --]
next reply other threads:[~2007-03-13 14:51 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-13 14:51 M. Koehrer [this message]
2007-03-13 15:19 ` [Xenomai-help] Howto catch SEGV signals in Xenomai Philippe Gerum
2007-03-13 15:36 ` M. Koehrer
2007-03-13 15:25 ` Gilles Chanteperdrix
2007-03-13 15:52 ` Philippe Gerum
2007-03-13 19:21 ` Gilles Chanteperdrix
2007-03-13 22:34 ` Philippe Gerum
2007-03-13 22:37 ` Philippe Gerum
2007-03-14 8:17 ` M. Koehrer
2007-03-14 8:47 ` M. Koehrer
2007-03-14 10:35 ` Philippe Gerum
2007-03-14 11:18 ` M. Koehrer
2007-03-14 13:32 ` Philippe Gerum
2007-03-14 11:02 ` Philippe Gerum
-- strict thread matches above, loose matches on Subject: below --
2007-03-14 12:36 M. Koehrer
2007-03-14 13:26 ` Philippe Gerum
2007-03-14 13:26 ` Gilles Chanteperdrix
2007-03-14 13:33 ` Philippe Gerum
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=11906791.1173797505269.JavaMail.ngmail@domain.hid \
--to=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.