mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-17 16:55:25 +01:00
Remove ifdef BOOTSTRAP from musl patches.
This commit is contained in:
parent
c1ceabb9c4
commit
fb4930c2f9
4 changed files with 31 additions and 69 deletions
|
|
@ -1,24 +1,20 @@
|
|||
# SPDX-FileCopyrightText: 2023 Richard Masters <grick23@gmail.com>
|
||||
# SPDX-License-Identifier: MIT
|
||||
diff -u -r musl-1.2.3.orig/arch/i386/pthread_arch.h musl-1.2.3/arch/i386/pthread_arch.h
|
||||
diff -r -u musl-1.2.3.orig/arch/i386/pthread_arch.h musl-1.2.3/arch/i386/pthread_arch.h
|
||||
--- arch/i386/pthread_arch.h 2022-04-07 17:12:40.000000000 +0000
|
||||
+++ arch/i386/pthread_arch.h 2022-12-19 23:39:10.890414014 +0000
|
||||
@@ -1,8 +1,14 @@
|
||||
+#define BOOTSTRAP
|
||||
+++ arch/i386/pthread_arch.h 2023-04-07 12:07:07.929132587 +0000
|
||||
@@ -1,8 +1,7 @@
|
||||
+extern uintptr_t g_pthread;
|
||||
static inline uintptr_t __get_tp()
|
||||
{
|
||||
+#ifndef BOOTSTRAP
|
||||
uintptr_t tp;
|
||||
__asm__ ("movl %%gs:0,%0" : "=r" (tp) );
|
||||
return tp;
|
||||
+#else
|
||||
- uintptr_t tp;
|
||||
- __asm__ ("movl %%gs:0,%0" : "=r" (tp) );
|
||||
- return tp;
|
||||
+ return g_pthread;
|
||||
+#endif
|
||||
}
|
||||
|
||||
#define MC_PC gregs[REG_EIP]
|
||||
diff -u -r musl-1.2.3.orig/arch/i386/syscall_arch.h musl-1.2.3/arch/i386/syscall_arch.h
|
||||
diff -r -u musl-1.2.3.orig/arch/i386/syscall_arch.h musl-1.2.3/arch/i386/syscall_arch.h
|
||||
--- arch/i386/syscall_arch.h 2022-04-07 17:12:40.000000000 +0000
|
||||
+++ arch/i386/syscall_arch.h 2022-12-20 17:28:21.734839560 +0000
|
||||
@@ -1,3 +1,4 @@
|
||||
|
|
@ -26,25 +22,22 @@ diff -u -r musl-1.2.3.orig/arch/i386/syscall_arch.h musl-1.2.3/arch/i386/syscall
|
|||
#define __SYSCALL_LL_E(x) \
|
||||
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
|
||||
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
||||
diff -u -r musl-1.2.3.orig/src/env/__init_tls.c musl-1.2.3/src/env/__init_tls.c
|
||||
diff -r -u musl-1.2.3.orig/src/env/__init_tls.c musl-1.2.3/src/env/__init_tls.c
|
||||
--- src/env/__init_tls.c 2022-04-07 17:12:40.000000000 +0000
|
||||
+++ src/env/__init_tls.c 2022-12-19 23:39:42.362414223 +0000
|
||||
@@ -10,20 +10,25 @@
|
||||
+++ src/env/__init_tls.c 2023-04-07 12:07:38.677133193 +0000
|
||||
@@ -10,20 +10,19 @@
|
||||
#include "syscall.h"
|
||||
|
||||
volatile int __thread_list_lock;
|
||||
+#define BOOTSTRAP
|
||||
+uintptr_t g_pthread;
|
||||
|
||||
int __init_tp(void *p)
|
||||
{
|
||||
pthread_t td = p;
|
||||
td->self = td;
|
||||
+#ifndef BOOTSTRAP
|
||||
int r = __set_thread_area(TP_ADJ(p));
|
||||
if (r < 0) return -1;
|
||||
if (!r) libc.can_do_threads = 1;
|
||||
+#endif
|
||||
- int r = __set_thread_area(TP_ADJ(p));
|
||||
- if (r < 0) return -1;
|
||||
- if (!r) libc.can_do_threads = 1;
|
||||
td->detach_state = DT_JOINABLE;
|
||||
td->tid = __syscall(SYS_set_tid_address, &__thread_list_lock);
|
||||
td->locale = &libc.global_locale;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue