All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe Gerum <rpm@xenomai.org>
To: "Stéphane ANCELOT" <sancelot@free.fr>,
	"xenomai@xenomai.org" <xenomai@xenomai.org>
Subject: Re: [Xenomai] xenomai 3.0rc4 rt_heap_alloc replies with timeout
Date: Wed, 06 May 2015 10:56:19 +0200	[thread overview]
Message-ID: <5549D733.90702@xenomai.org> (raw)
In-Reply-To: <5548C7A4.5030309@free.fr>

On 05/05/2015 03:37 PM, Stéphane ANCELOT wrote:
> Hi,
> unfortunately, There is something wrong for unknown reason using these
> functions.
> 
> I made a simple regression program that only create heaps and allocates
> area.
> 
> At line 190 of the file, depending on the size value of the heap, the
> program works or not.
> This looks like corrupted memory problem...
> 

The API tells you what happens, it's just that you did not pay attention
to return codes:

	flags = H_FIFO ;
	size = 36800;
	size = 824; // size = 824 is failing but changing size to 3200 rocks ...
	ret = rt_heap_create(&heap2, "config", size, flags);

This returns -EINVAL, which is documented for rt_heap_create() as:

 * - -EINVAL is returned if @a mode is invalid, or @a heapsz is not in
 * the range [2k..2Gb].

Besides, your test code never deletes the heaps it creates, before
overwriting the same heap descriptor with the next call to
rt_heap_create(). Hopefully your application does not do that.

I'm unsure to understand your reasoning about memory corruption.

-- 
Philippe.


  parent reply	other threads:[~2015-05-06  8:56 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-28 15:50 [Xenomai] xenomai 3.0rc4 rt_heap_alloc replies with timeout Stéphane ANCELOT
2015-04-28 17:25 ` Philippe Gerum
2015-04-30  7:08   ` Stéphane ANCELOT
2015-04-30  8:34     ` Philippe Gerum
2015-04-30 12:30       ` Stéphane ANCELOT
2015-05-05 13:37         ` Stéphane ANCELOT
2015-05-05 17:21           ` Gilles Chanteperdrix
2015-05-06  8:21             ` Stéphane ANCELOT
2015-05-06  8:23               ` Gilles Chanteperdrix
2015-05-06  8:26               ` Gilles Chanteperdrix
2015-05-06  8:31                 ` Stéphane ANCELOT
2015-05-06  8:48                   ` Gilles Chanteperdrix
2015-05-06  9:14               ` Philippe Gerum
2015-05-06  8:56           ` Philippe Gerum [this message]
2015-05-06  9:55             ` Stéphane ANCELOT

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=5549D733.90702@xenomai.org \
    --to=rpm@xenomai.org \
    --cc=sancelot@free.fr \
    --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.