提交 3b168ce1 编写于 作者: R rofl0r

use syscall_arg_t type for syscall prototypes in pthread code

上级 5cc1d920
#include "pthread_impl.h" #include "pthread_impl.h"
#include "syscall.h"
static long sccp(long nr, long u, long v, long w, long x, long y, long z) 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); return (__syscall)(nr, u, v, w, x, y, z);
} }
......
#include "pthread_impl.h" #include "pthread_impl.h"
#include "syscall.h"
void __cancel() void __cancel()
{ {
...@@ -8,9 +9,11 @@ void __cancel() ...@@ -8,9 +9,11 @@ void __cancel()
pthread_exit(PTHREAD_CANCELED); pthread_exit(PTHREAD_CANCELED);
} }
long __syscall_cp_asm(volatile void *, long, long, long, long, long, long, long); long __syscall_cp_asm(volatile void *, syscall_arg_t, syscall_arg_t, syscall_arg_t,
syscall_arg_t, syscall_arg_t, syscall_arg_t, syscall_arg_t);
long (__syscall_cp)(long nr, long u, long v, long w, long x, long y, long z) 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)
{ {
pthread_t self; pthread_t self;
long r; long r;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册