- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
31 lines
886 B
Diff
31 lines
886 B
Diff
From 9ce323432a7f4d99f617970c7e35b607b9bbf843 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Thu, 21 Jun 2018 19:48:04 -0700
|
|
Subject: [PATCH] shm.c: Mark glibc specific changes so
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
shm.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/shm.c b/shm.c
|
|
index 1f82cab..9447b63 100644
|
|
--- a/shm.c
|
|
+++ b/shm.c
|
|
@@ -48,10 +48,11 @@
|
|
* system shmget() may be performed without worry as there is no dynamic
|
|
* call chain.
|
|
*/
|
|
+#ifdef __GLIBC__
|
|
extern void *dlsym (void *__restrict __handle, __const char *__restrict __name)
|
|
__attribute__((weak)) __THROW __nonnull ((2));
|
|
extern char *dlerror (void) __attribute__((weak)) __THROW;
|
|
-
|
|
+#endif
|
|
|
|
/* call syscall shmget through the generic syscall mechanism */
|
|
static int syscall_shmget(key_t key, size_t size, int shmflg)
|