mailing list of musl libc
 help / color / mirror / code / Atom feed
89b04c6d698fcbc43069fe9b07216722e2b0b581 blob 652 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
 
#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;
	__fork_handler(-1);
	__block_all_sigs(&set);
#ifdef SYS_fork
	ret = syscall(SYS_fork);
#else
	ret = syscall(SYS_clone, SIGCHLD);
#endif
	if (libc.has_thread_pointer && !ret) {
		pthread_t self = __pthread_self();
		self->tid = self->pid = __syscall(SYS_getpid);
		memset(&self->robust_list, 0, sizeof self->robust_list);
		libc.threads_minus_1 = 0;
	}
	__restore_sigs(&set);
	__fork_handler(!ret);
	return ret;
}
debug log:

solving 89b04c6 ...
found 89b04c6 in https://inbox.vuxu.org/musl/20140526184036.GZ507@brightrain.aerifal.cx/ ||
	https://inbox.vuxu.org/musl/20140525054237.GA18085@brightrain.aerifal.cx/
found 864c7d7 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 864c7d7a6661e160e4bf652220c08ea3401c6325	src/process/fork.c

applying [1/2] https://inbox.vuxu.org/musl/20140526184036.GZ507@brightrain.aerifal.cx/
diff --git a/src/process/fork.c b/src/process/fork.c
index 864c7d7..89b04c6 100644

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

skipping https://inbox.vuxu.org/musl/20140525054237.GA18085@brightrain.aerifal.cx/ for 89b04c6
index at:
100644 89b04c6d698fcbc43069fe9b07216722e2b0b581	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).