Deleted Added
sdiff udiff text old ( 163451 ) new ( 163953 )
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 163451 2006-10-17 02:28:58Z davidxu $
6 * This file is part of the DTrace syscall provider.
7 */
8
9static void
10systrace_args(int sysnum, void *params, u_int64_t *uarg, int *n_args)
11{
12 int64_t *iarg = (int64_t *) uarg;
13 switch (sysnum) {

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

2753 case 466: {
2754 struct rtprio_thread_args *p = params;
2755 iarg[0] = p->function; /* int */
2756 iarg[1] = p->lwpid; /* lwpid_t */
2757 uarg[2] = (intptr_t) p->rtp; /* struct rtprio * */
2758 *n_args = 3;
2759 break;
2760 }
2761 default:
2762 *n_args = 0;
2763 break;
2764 };
2765}