mailing list of musl libc
 help / color / mirror / code / Atom feed
4a83bc3136d19ed4604817b5889a18e5da9779ab blob 522 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
 
#include <unistd.h>
#include <string.h>
#include "syscall.h"
#include "libc.h"
#include "pthread_impl.h"

WEAK_PROVIDE_INT;
weak_alias(__weak_dummy_int,  __fork_handler);

pid_t fork(void)
{
	pid_t ret;
	__fork_handler(-1);
	ret = syscall(SYS_fork);
	if (libc.main_thread && !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;
		libc.main_thread = self;
	}
	__fork_handler(!ret);
	return ret;
}
debug log:

solving 4a83bc3 ...
found 4a83bc3 in https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
found fb8a430 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 fb8a430add8505e175fd643409258164d5505fa6	src/process/fork.c

applying [1/1] https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
diff --git a/src/process/fork.c b/src/process/fork.c
index fb8a430..4a83bc3 100644

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

index at:
100644 4a83bc3136d19ed4604817b5889a18e5da9779ab	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).