Deleted Added
sdiff udiff text old ( 236027 ) new ( 239347 )
full compact
1/*
2 * System call argument to DTrace register array converstion.
3 *
4 * DO NOT EDIT-- this file is automatically generated.
5 * $FreeBSD: head/sys/compat/freebsd32/freebsd32_systrace_args.c 236027 2012-05-25 21:52:57Z ed $
6 * This file is part of the DTrace syscall provider.
7 */
8
9static void
10systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
11{
12 int64_t *iarg = (int64_t *) uarg;
13 switch (sysnum) {

--- 1205 unchanged lines hidden (view full) ---

1219 }
1220 /* ffclock_getestimate */
1221 case 243: {
1222 struct ffclock_getestimate_args *p = params;
1223 uarg[0] = (intptr_t) p->cest; /* struct ffclock_estimate * */
1224 *n_args = 1;
1225 break;
1226 }
1227 /* minherit */
1228 case 250: {
1229 struct minherit_args *p = params;
1230 uarg[0] = (intptr_t) p->addr; /* void * */
1231 uarg[1] = p->len; /* size_t */
1232 iarg[2] = p->inherit; /* int */
1233 *n_args = 3;
1234 break;

--- 3751 unchanged lines hidden (view full) ---

4986 switch(ndx) {
4987 case 0:
4988 p = "struct ffclock_estimate *";
4989 break;
4990 default:
4991 break;
4992 };
4993 break;
4994 /* minherit */
4995 case 250:
4996 switch(ndx) {
4997 case 0:
4998 p = "void *";
4999 break;
5000 case 1:
5001 p = "size_t";

--- 3883 unchanged lines hidden (view full) ---

8885 if (ndx == 0 || ndx == 1)
8886 p = "int";
8887 break;
8888 /* ffclock_getestimate */
8889 case 243:
8890 if (ndx == 0 || ndx == 1)
8891 p = "int";
8892 break;
8893 /* minherit */
8894 case 250:
8895 if (ndx == 0 || ndx == 1)
8896 p = "int";
8897 break;
8898 /* rfork */
8899 case 251:
8900 if (ndx == 0 || ndx == 1)

--- 1041 unchanged lines hidden ---