All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai-help] Re: Re: Re: A fairly small rtnet/Xenomai...
@ 2006-12-22 11:32 M. Koehrer
  0 siblings, 0 replies; 5+ messages in thread
From: M. Koehrer @ 2006-12-22 11:32 UTC (permalink / raw)
  To: dmitry.adamushko, mathias_koehrer; +Cc: xenomai

Hi Dmitry, 

> 
> > As this is hard to understand, I strongly recommend that there is Xenomai
> support
> > for this! I.e. a Xenomai API that can be called with a (callback-)function
> pointer and
> > a user data pointer.
> > When a (realtime) thread calls this function, the real time thread is
> blocked.
> > The callback function is then called from a safe context and
> > after exit of the callback function the real time thread is resumed.
> 
> I haven't got your idea. Did you get the cause of the problem with fork() ?
Yes, I think I got it (more or less).

However, as a typical user of a OS I do not want to take care of this
very specific things. I want to call an OS-API that is doing the job for me.
I.e. in my example, I want to call an API that allows me to execute whatever
external application without any risk and side effects.
>From the functional point of view I want to use the "system()" call.
When it is not save to call system() directly (due to all the things that have been
discussed), I think it is important to document this (e.g. in the Wiki) _and_ to
provide an easy usable replacement for it, i.e. something like a rt_task_system()
that does all the required things internally for me and behaves on the functional side exactly
like the standard system() does.
The Xenomai Native example is a very good example for a cleanly designed API that
can be easily (and nearly intuitively) used. 
Any workarounds (I call it workaround as the intuitive, straightforward approach is not possible)
that are required to get a problem solved, weakens the whole OS (Xenomai).

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  44,85 €  inkl. DSL- und ISDN-Grundgebühr!
http://www.arcor.de/rd/emf-dsl-2


^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: [Xenomai-help] Re: A fairly small rtnet/Xenomai application that freezes the
  2006-12-21 10:21                   ` M. Koehrer
@ 2006-12-21 10:45 Dmitry Adamushko
  2006-12-20 14:11 ` [Xenomai-help] Aw: Re: A fairly small rtnet/Xenomai application that freezes the PC M. Koehrer
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Adamushko @ 2006-12-21 10:45 UTC (permalink / raw)
  To: M. Koehrer; +Cc: Xenomai help, Jan Kiszka

On 21/12/06, M. Koehrer <mathias_koehrer@domain.hid> wrote:
> Hi Jan, hi everybody,
>
> I have stripped down my program that is crashing Xenomai even further.
> (I have attached the complete source code).
> No rtnet is required.
> Now I have the following real time task:
>
> static void realtimetask(void *arg)
> {
>     system("ls -l");
>     rt_task_sleep(1000000000ULL);
>     printf("rt_task_sleep done...\n");
> }


Is it still true that when you place printf() right after the system()
call, it works?

What happens when you try different sleep intervals : 0, say 1000 ?

Just to be sure where we are stuck. Insert exit() (or rt_task_delete(NULL)) :

(0) after system() --- if said above about printf() is not true;
(1) after rt_task_sleep();
(2) after printf("rt_task_sleep done...\n").

At which step does a hang start occuring?

>
> This leads to a complete freeze of the PC on a 2.6.19.1 kernel using the latest
> Xenomai (from SVN) and the included adeos-patch.

I have almost the same config (only 2.6.19) at home, although it's p3
750 so I'll try if it won't be solved by this everning (or we are sure
that only high-end machines are involved).


-- 
Best regards,
Dmitry Adamushko


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-12-22 12:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-22 11:32 [Xenomai-help] Re: Re: Re: A fairly small rtnet/Xenomai M. Koehrer
  -- strict thread matches above, loose matches on Subject: below --
2006-12-21 10:45 [Xenomai-help] Re: A fairly small rtnet/Xenomai application that freezes the Dmitry Adamushko
2006-12-20 14:11 ` [Xenomai-help] Aw: Re: A fairly small rtnet/Xenomai application that freezes the PC M. Koehrer
2006-12-19  8:08   ` [Xenomai-help] NMI watchdog: Loading of xeno_native leads to reboot of PC Jan Kiszka
2006-12-19  7:54     ` M. Koehrer
2006-12-19  8:14       ` Re: [Xenomai-help] NMI watchdog: Loading of xeno_native leads to M. Koehrer
2006-12-19  9:26         ` [Xenomai-help] NMI watchdog: Loading of xeno_native leads M. Koehrer
2006-12-19 12:04           ` Aw: " M. Koehrer
2006-12-20 13:25             ` [Xenomai-help] A fairly small rtnet/Xenomai application that freezes the PC M. Koehrer
2006-12-21  8:48               ` [Xenomai-help] Re: Re: A fairly small rtnet/Xenomai application that freezes the M. Koehrer
2006-12-21  9:03                 ` [Xenomai-help] " Jan Kiszka
2006-12-21 10:21                   ` M. Koehrer
2006-12-21 11:19                     ` [Xenomai-help] " M. Koehrer
2006-12-21 11:28                       ` Philippe Gerum
2006-12-21 11:51                         ` [Xenomai-help] Re: Re: Re: A fairly small rtnet/Xenomai M. Koehrer
2006-12-21 13:09                           ` Dmitry Adamushko
2006-12-21 13:36                           ` [Xenomai-help] " M. Koehrer
2006-12-21 14:13                             ` Philippe Gerum
2006-12-21 15:00                               ` [Xenomai-help] " M. Koehrer
2006-12-21 15:17                                 ` Dmitry Adamushko
2006-12-21 15:36                                   ` [Xenomai-help] " M. Koehrer
2006-12-21 15:43                                     ` Dmitry Adamushko
2006-12-22  9:06                                       ` M. Koehrer
2006-12-22  9:24                                         ` [Xenomai-help] " Gilles Chanteperdrix
2006-12-22  9:40                                           ` Dmitry Adamushko
2006-12-22 10:27                                             ` [Xenomai-help] " M. Koehrer
2006-12-22 11:20                                               ` Philippe Gerum
2006-12-22 10:15                                                 ` [Xenomai-help] " Gilles Chanteperdrix
2006-12-21 18:18                                                   ` Gilles Chanteperdrix
2006-12-22 11:40                                                 ` [Xenomai-help] Re: " M. Koehrer
2006-12-22 12:09                                                   ` Philippe Gerum

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.