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/kern/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) {

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

1353 }
1354 /* ffclock_getestimate */
1355 case 243: {
1356 struct ffclock_getestimate_args *p = params;
1357 uarg[0] = (intptr_t) p->cest; /* struct ffclock_estimate * */
1358 *n_args = 1;
1359 break;
1360 }
1361 /* ntp_gettime */
1362 case 248: {
1363 struct ntp_gettime_args *p = params;
1364 uarg[0] = (intptr_t) p->ntvp; /* struct ntptimeval * */
1365 *n_args = 1;
1366 break;
1367 }
1368 /* minherit */

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

5427 switch(ndx) {
5428 case 0:
5429 p = "struct ffclock_estimate *";
5430 break;
5431 default:
5432 break;
5433 };
5434 break;
5435 /* ntp_gettime */
5436 case 248:
5437 switch(ndx) {
5438 case 0:
5439 p = "struct ntptimeval *";
5440 break;
5441 default:
5442 break;

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

9459 if (ndx == 0 || ndx == 1)
9460 p = "int";
9461 break;
9462 /* ffclock_getestimate */
9463 case 243:
9464 if (ndx == 0 || ndx == 1)
9465 p = "int";
9466 break;
9467 /* ntp_gettime */
9468 case 248:
9469 if (ndx == 0 || ndx == 1)
9470 p = "int";
9471 break;
9472 /* minherit */
9473 case 250:
9474 if (ndx == 0 || ndx == 1)

--- 1100 unchanged lines hidden ---