mailing list of musl libc
 help / color / mirror / code / Atom feed
538a0bcb2b2b567b975d67dfd1ed770e5fa4c3bc blob 820 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include "syscall.h"
#include "libc.h"
#include "pthread_impl.h"

static void dummy(int x)
{
}

weak_alias(dummy, __fork_handler);
weak_alias(dummy, __aio_atfork);

pid_t fork(void)
{
	pid_t ret;
	sigset_t set;
	__fork_handler(-1);
	__block_all_sigs(&set);
	__aio_atfork(-1);
#ifdef SYS_fork
	ret = __syscall(SYS_fork);
#else
	ret = __syscall(SYS_clone, SIGCHLD, 0);
#endif
	if (!ret) {
		pthread_t self = __pthread_self();
		self->tid = __syscall(SYS_gettid);
		self->robust_list.off = 0;
		self->robust_list.pending = 0;
		self->next = self->prev = self;
		__thread_list_lock = 0;
		libc.threads_minus_1 = 0;
		if (libc.need_locks > 0) libc.need_locks = -2;
	}
	__aio_atfork(!ret);
	__restore_sigs(&set);
	__fork_handler(!ret);
	return __syscall_ret(ret);
}
debug log:

solving 538a0bcb ...
found 538a0bcb in https://inbox.vuxu.org/musl/20200928232614.GA17637@brightrain.aerifal.cx/
found dbaa9402 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 dbaa940256addbb6041b61fb3e10348e95c54bf4	src/process/fork.c

applying [1/1] https://inbox.vuxu.org/musl/20200928232614.GA17637@brightrain.aerifal.cx/
diff --git a/src/process/fork.c b/src/process/fork.c
index dbaa9402..538a0bcb 100644

Checking patch src/process/fork.c...
Applied patch src/process/fork.c cleanly.

index at:
100644 538a0bcb2b2b567b975d67dfd1ed770e5fa4c3bc	src/process/fork.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).