use syscall_arg_t type for syscall prototypes in pthread code

This commit is contained in:
rofl0r 2014-01-08 00:26:34 +01:00
parent 5cc1d920ba
commit 3b168ce1fb
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,8 @@
#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);
}

View File

@ -1,4 +1,5 @@
#include "pthread_impl.h"
#include "syscall.h"
void __cancel()
{
@ -8,9 +9,11 @@ void __cancel()
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;
long r;