From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4B7592D5.7050406@domain.hid> Date: Fri, 12 Feb 2010 18:41:41 +0100 From: Jan Kiszka MIME-Version: 1.0 References: <4B758E7A.5060408@domain.hid> In-Reply-To: <4B758E7A.5060408@domain.hid> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : Fix remapping of global sem_heap on fork List-Id: Xenomai life and development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gilles Chanteperdrix Cc: Xenomai core Gilles Chanteperdrix wrote: > 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 >> 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 >> >> --- >> >> 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 >> #include >> - >> +#include >> #include >> #include >> #include >> @@ -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. > Yep, copy&paste error. Fixed. Jan -- Siemens AG, Corporate Technology, CT T DE IT 1 Corporate Competence Center Embedded Linux