mailing list of musl libc
 help / color / mirror / code / Atom feed
6602eafc2ec715ae402e3c9f0ca524bdd19bf3d1 blob 668 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
 
#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);

pid_t fork(void)
{
	pid_t ret;
	sigset_t set;
	int olderr;
	__fork_handler(-1);
	__block_all_sigs(&set);
#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;
		libc.threads_minus_1 = 0;
	}
	__restore_sigs(&set);

	olderr = errno;
	__fork_handler(!ret);
	errno = olderr;

	return ret;
}
debug log:

solving 6602eafc ...
found 6602eafc in https://inbox.vuxu.org/musl/20171110205829.18319-1-koorogi@koorogi.info/
found b96f0024 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 b96f0024f4c03c86e8ac6d72b4305576d0a020c6	src/process/fork.c

applying [1/1] https://inbox.vuxu.org/musl/20171110205829.18319-1-koorogi@koorogi.info/
diff --git a/src/process/fork.c b/src/process/fork.c
index b96f0024..6602eafc 100644

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

index at:
100644 6602eafc2ec715ae402e3c9f0ca524bdd19bf3d1	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).