systrace_args.c (552fbe752f4f22a16c552cc328b1a95967ce545f) | systrace_args.c (6ec46f7aa84814fb26f0639f63684bca915f5c99) |
---|---|
1/* 2 * System call argument to DTrace register array converstion. 3 * 4 * DO NOT EDIT-- this file is automatically generated. 5 * $FreeBSD$ 6 * This file is part of the DTrace syscall provider. 7 */ 8 --- 2848 unchanged lines hidden (view full) --- 2857 /* ftruncate */ 2858 case 480: { 2859 struct ftruncate_args *p = params; 2860 iarg[0] = p->fd; /* int */ 2861 iarg[1] = p->length; /* off_t */ 2862 *n_args = 2; 2863 break; 2864 } | 1/* 2 * System call argument to DTrace register array converstion. 3 * 4 * DO NOT EDIT-- this file is automatically generated. 5 * $FreeBSD$ 6 * This file is part of the DTrace syscall provider. 7 */ 8 --- 2848 unchanged lines hidden (view full) --- 2857 /* ftruncate */ 2858 case 480: { 2859 struct ftruncate_args *p = params; 2860 iarg[0] = p->fd; /* int */ 2861 iarg[1] = p->length; /* off_t */ 2862 *n_args = 2; 2863 break; 2864 } |
2865 /* thr_kill2 */ 2866 case 481: { 2867 struct thr_kill2_args *p = params; 2868 iarg[0] = p->pid; /* pid_t */ 2869 iarg[1] = p->id; /* long */ 2870 iarg[2] = p->sig; /* int */ 2871 *n_args = 3; 2872 break; 2873 } |
|
2865 default: 2866 *n_args = 0; 2867 break; 2868 }; 2869} | 2874 default: 2875 *n_args = 0; 2876 break; 2877 }; 2878} |