Deleted Added
full compact
5,6c5,6
< * $FreeBSD: head/sys/amd64/linux32/linux32_proto.h 160799 2006-07-28 19:08:37Z jhb $
< * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.18 2006/07/28 19:05:26 jhb Exp
---
> * $FreeBSD: head/sys/amd64/linux32/linux32_proto.h 161309 2006-08-15 12:51:45Z netchild $
> * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.19 2006/08/15 12:28:14 netchild Exp
14,15d13
< #include <sys/thr.h>
< #include <sys/umtx.h>
17d14
<
199a197,199
> struct linux_getppid_args {
> register_t dummy;
> };
370a371,373
> char parent_tidptr_l_[PADL_(void *)]; void * parent_tidptr; char parent_tidptr_r_[PADR_(void *)];
> char dummy_l_[PADL_(int)]; int dummy; char dummy_r_[PADR_(int)];
> char child_tidptr_l_[PADL_(void *)]; void * child_tidptr; char child_tidptr_r_[PADR_(void *)];
670a674,676
> struct linux_gettid_args {
> register_t dummy;
> };
706a713,724
> struct linux_tkill_args {
> char tid_l_[PADL_(int)]; int tid; char tid_r_[PADR_(int)];
> char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
> };
> struct linux_sys_futex_args {
> char uaddr_l_[PADL_(void *)]; void * uaddr; char uaddr_r_[PADR_(void *)];
> char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)];
> char val_l_[PADL_(int)]; int val; char val_r_[PADR_(int)];
> char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
> char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)];
> char val3_l_[PADL_(int)]; int val3; char val3_r_[PADR_(int)];
> };
709a728,730
> struct linux_exit_group_args {
> char error_code_l_[PADL_(int)]; int error_code; char error_code_r_[PADR_(int)];
> };
726c747
< register_t dummy;
---
> char tidptr_l_[PADL_(int *)]; int * tidptr; char tidptr_r_[PADR_(int *)];
744c765,766
< register_t dummy;
---
> char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
> char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
747c769,770
< register_t dummy;
---
> char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
> char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
750c773,774
< register_t dummy;
---
> char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
> char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
753c777,780
< register_t dummy;
---
> char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
> char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
> char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)];
> char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
762c789,791
< register_t dummy;
---
> char tgid_l_[PADL_(int)]; int tgid; char tgid_r_[PADR_(int)];
> char pid_l_[PADL_(int)]; int pid; char pid_r_[PADR_(int)];
> char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
921a951
> int linux_getppid(struct thread *, struct linux_getppid_args *);
1035a1066
> int linux_gettid(struct thread *, struct linux_gettid_args *);
1047a1079,1080
> int linux_tkill(struct thread *, struct linux_tkill_args *);
> int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
1048a1082
> int linux_exit_group(struct thread *, struct linux_exit_group_args *);