Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: fusl/src/thread/__syscall_cp.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/thread/__set_thread_area.c ('k') | fusl/src/thread/__timedwait.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "pthread_impl.h"
2 #include "syscall.h"
3
4 __attribute__((__visibility__("hidden")))
5 long __syscall_cp_c();
6
7 static long sccp(syscall_arg_t nr,
8 syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
9 syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
10 {
11 return (__syscall)(nr, u, v, w, x, y, z);
12 }
13
14 weak_alias(sccp, __syscall_cp_c);
15
16 long (__syscall_cp)(syscall_arg_t nr,
17 syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
18 syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
19 {
20 return __syscall_cp_c(nr, u, v, w, x, y, z);
21 }
OLDNEW
« no previous file with comments | « fusl/src/thread/__set_thread_area.c ('k') | fusl/src/thread/__timedwait.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698