]>
git.saurik.com Git - apple/xnu.git/blob - bsd/dev/dtrace/systrace.h
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #ifndef _SYS_SYSTRACE_H
28 #define _SYS_SYSTRACE_H
30 /* #pragma ident "@(#)systrace.h 1.2 05/06/08 SMI" */
32 #if defined(__APPLE__)
35 #define _KERNEL /* Solaris vs. Darwin */
39 #include <sys/dtrace.h>
41 #endif /* __APPLE__ */
42 #include <sys/dtrace.h>
50 typedef struct systrace_sysent
{
51 dtrace_id_t stsy_entry
;
52 dtrace_id_t stsy_return
;
53 #if !defined(__APPLE__)
54 int64_t (*stsy_underlying
)();
56 int32_t (*stsy_underlying
)();
57 int32_t stsy_return_type
;
58 #endif /* __APPLE__ */
61 extern systrace_sysent_t
*systrace_sysent
;
62 extern systrace_sysent_t
*systrace_sysent32
;
64 #if !defined(__APPLE__)
65 extern void (*systrace_probe
)(dtrace_id_t
, uintptr_t, uintptr_t,
66 uintptr_t, uintptr_t, uintptr_t);
67 extern void systrace_stub(dtrace_id_t
, uintptr_t, uintptr_t,
68 uintptr_t, uintptr_t, uintptr_t);
70 extern int64_t dtrace_systrace_syscall(uintptr_t arg0
, uintptr_t arg1
,
71 uintptr_t arg2
, uintptr_t arg3
, uintptr_t arg4
, uintptr_t arg5
);
73 extern void (*systrace_probe
)(dtrace_id_t
, uint64_t, uint64_t,
74 uint64_t, uint64_t, uint64_t);
75 extern void systrace_stub(dtrace_id_t
, uint64_t, uint64_t,
76 uint64_t, uint64_t, uint64_t);
78 extern int32_t dtrace_systrace_syscall(struct proc
*, void *, int *);
80 extern void dtrace_systrace_syscall_return(unsigned short, int, int *);
81 #endif /* __APPLE__ */
83 #ifdef _SYSCALL32_IMPL
84 extern int64_t dtrace_systrace_syscall32(uintptr_t arg0
, uintptr_t arg1
,
85 uintptr_t arg2
, uintptr_t arg3
, uintptr_t arg4
, uintptr_t arg5
);
94 #endif /* _SYS_SYSTRACE_H */