From: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
To: Jan Kiszka <jan.kiszka@domain.hid>
Cc: Xenomai core <Xenomai-core@domain.hid>
Subject: Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : Fix remapping of global sem_heap on fork
Date: Fri, 12 Feb 2010 18:23:06 +0100 [thread overview]
Message-ID: <4B758E7A.5060408@domain.hid> (raw)
In-Reply-To: <E1NfybE-0003dg-9e@domain.hid>
GIT version control wrote:
> Module: xenomai-jki
> Branch: for-upstream
> Commit: 40e5b366397db3dde0ebde861a739dc2cd624b5a
> URL: http://git.xenomai.org/?p=xenomai-jki.git;a=commit;h=40e5b366397db3dde0ebde861a739dc2cd624b5a
>
> Author: Jan Kiszka <jan.kiszka@domain.hid>
> Date: Fri Feb 12 17:40:09 2010 +0100
>
> Fix remapping of global sem_heap on fork
>
> As xeno_init_sem_heaps might be called multiple times even without fork,
> we must not remap the global heap here. Register an atfork handler
> instead that handles this case and simple reject multiple heap creation
> requests for the same process.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@domain.hid>
>
> ---
>
> src/skins/common/sem_heap.c | 29 ++++++++++++++++++-----------
> 1 files changed, 18 insertions(+), 11 deletions(-)
>
> diff --git a/src/skins/common/sem_heap.c b/src/skins/common/sem_heap.c
> index 89f325a..12b256f 100644
> --- a/src/skins/common/sem_heap.c
> +++ b/src/skins/common/sem_heap.c
> @@ -1,6 +1,6 @@
> #include <stdio.h>
> #include <stdlib.h>
> -
> +#include <pthread.h>
> #include <unistd.h>
> #include <sys/types.h>
> #include <sys/stat.h>
> @@ -65,24 +65,31 @@ static void unmap_sem_heap(unsigned long heap_addr, unsigned shared)
> munmap((void *) heap_addr, hinfo.size);
> }
>
> +static void remap_on_fork(void)
> +{
> + unmap_sem_heap(xeno_sem_heap[0], 0);
> +
> + if (xeno_sem_heap[0] == (unsigned long) MAP_FAILED) {
> + perror("Xenomai: mmap(local sem heap)");
> + exit(EXIT_FAILURE);
> + }
Looks bogus to me. Where do the remap occur ?
Looks like your test case does not try forking.
--
Gilles.
next parent reply other threads:[~2010-02-12 17:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <E1NfybE-0003dg-9e@domain.hid>
2010-02-12 17:23 ` Gilles Chanteperdrix [this message]
2010-02-12 17:41 ` [Xenomai-core] [Xenomai-git] Jan Kiszka : Fix remapping of global sem_heap on fork 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=4B758E7A.5060408@domain.hid \
--to=gilles.chanteperdrix@xenomai.org \
--cc=Xenomai-core@domain.hid \
--cc=jan.kiszka@domain.hid \
/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.