Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-10]: src/lib/libc/dlfcn Pull up following revision(s) (requested ...



details:   https://anonhg.NetBSD.org/src/rev/d36d41b560fb
branches:  netbsd-10
changeset: 377290:d36d41b560fb
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Jul 05 16:11:51 2023 +0000

description:
Pull up following revision(s) (requested by riastradh in ticket #225):

        lib/libc/dlfcn/dlfcn_elf.c: revision 1.17

libc: Fix missing membar_consumer in dl_iterate_phdr.

Pairs with the existing membar_producer.

diffstat:

 lib/libc/dlfcn/dlfcn_elf.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r e02bf481d729 -r d36d41b560fb lib/libc/dlfcn/dlfcn_elf.c
--- a/lib/libc/dlfcn/dlfcn_elf.c        Wed Jul 05 16:09:50 2023 +0000
+++ b/lib/libc/dlfcn/dlfcn_elf.c        Wed Jul 05 16:11:51 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dlfcn_elf.c,v 1.16 2018/07/13 19:49:47 joerg Exp $     */
+/*     $NetBSD: dlfcn_elf.c,v 1.16.10.1 2023/07/05 16:11:51 martin Exp $       */
 
 /*
  * Copyright (c) 2000 Takuya SHIOZAKI
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: dlfcn_elf.c,v 1.16 2018/07/13 19:49:47 joerg Exp $");
+__RCSID("$NetBSD: dlfcn_elf.c,v 1.16.10.1 2023/07/05 16:11:51 martin Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include "namespace.h"
@@ -207,6 +207,7 @@ dl_iterate_phdr(int (*callback)(struct d
                membar_producer();
                setup_done = true;
        }
+       membar_consumer();
 
        memset(&phdr_info, 0, sizeof(phdr_info));
        phdr_info.dlpi_addr = dlpi_addr;



Home | Main Index | Thread Index | Old Index