mailing list of musl libc
 help / color / mirror / code / Atom feed
09878c6fb067695ee66469bd5e6d32e808b444a1 blob 617 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
 
#include "pthread_impl.h"
#include "syscall.h"

#ifdef SHARED
__attribute__((__visibility__("hidden")))
#endif
long __syscall_cp_c();

static long sccp(syscall_arg_t nr,
                 syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
                 syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
{
	return __syscall(nr, u, v, w, x, y, z);
}

weak_alias(sccp, __syscall_cp_c);

long (__syscall_cp)(syscall_arg_t nr,
                    syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
                    syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
{
	return __syscall_cp_c(nr, u, v, w, x, y, z);
}
debug log:

solving 09878c6 ...
found 09878c6 in https://inbox.vuxu.org/musl/CABBv4TY4p8XeNUqNrkJRsjUUSVB1xceYb4OTn5Hh54JMWEB=KA@mail.gmail.com/
found faf57b1 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 faf57b1a6d4659bf9e83f89705464099172604d3	src/thread/__syscall_cp.c

applying [1/1] https://inbox.vuxu.org/musl/CABBv4TY4p8XeNUqNrkJRsjUUSVB1xceYb4OTn5Hh54JMWEB=KA@mail.gmail.com/
diff --git a/src/thread/__syscall_cp.c b/src/thread/__syscall_cp.c
index faf57b1..09878c6 100644

Checking patch src/thread/__syscall_cp.c...
Applied patch src/thread/__syscall_cp.c cleanly.

index at:
100644 09878c6fb067695ee66469bd5e6d32e808b444a1	src/thread/__syscall_cp.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).