All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@domain.hid>
To: Patrice Congo <congo_p@domain.hid>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-help] rt_task_spawn how to
Date: Wed, 28 Dec 2005 12:36:19 +0100	[thread overview]
Message-ID: <43B278B3.1070206@domain.hid> (raw)
In-Reply-To: <20051228004108.2353.qmail@domain.hid>

[-- Attachment #1: Type: text/plain, Size: 1523 bytes --]

Hi Patrice,

Patrice Congo wrote:
> Hi all,
> 
> is it posible to spawn a  task from another rt task?
> The following code tries to, but does not succeed:
> <code>
> #include <string.h>
> #include <stdio.h>
> 
> #include <native/task.h>
> //#include <general_macros.h>
> 
> #define STACK_SIZE 8192
> 
> RT_TASK spawner;
> RT_TASK spawnee;
> void spawner_work(void* c);
> void spawnee_work(void* c);
> 
> void spawner_work(void* c)
> {
> 	printf("\nspawner\n");
> 	//SWITCH_TASK_TO_SECONDARY_MODE();
> 	int
> ret=rt_task_spawn(&spawnee,"spawnee",STACK_SIZE,50,0,spawnee_work,NULL);
> 	printf("IN SPAWNER WORK: ret=%d
> %s\n",ret,strerror(ret));
> }
> 
> void spawnee_work(void* c)
> {
> 	printf("I am spawnee");	
> }
> 
> int main(int argc, char *argv[])
> {
> 	int ret=
> 	
> rt_task_spawn(&spawner,"spawner",STACK_SIZE,50,0,spawner_work,NULL);
> 	printf("\nIN MAIN:ret=%d %s\n",ret,strerror(-ret));
> 	getchar();
> 	return 0;
> }
> 
> 
> </code>
> 
> the resulting output is:
> <output>
> spawner
> 
> IN MAIN:ret=0 Success
> 
> </output>
> This means that the task "spawner" starts but get
> blocked at rt_task_spwan call.

Hmm, strange. This is what I see with latest SVN checkout of Xenomai:

spawner
IN SPAWNER WORK: ret=0 Success
I am spawnee
IN MAIN:ret=0 Success

Looks fine.

But you are lacking mlockall() in your demo. Maybe some page fault is
hitting your spawnee during creation.

> 
> Switching context explicitely to secondary or to
> primary does not help too.
> 
> can you help?
> 
> best, patrice
> 

Jan

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

  reply	other threads:[~2005-12-28 11:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-12-28  0:41 [Xenomai-help] rt_task_spawn how to Patrice Congo
2005-12-28 11:36 ` Jan Kiszka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2005-12-28  0:22 Patrice Congo

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=43B278B3.1070206@domain.hid \
    --to=jan.kiszka@domain.hid \
    --cc=congo_p@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.