⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systrace.h

📁 Sun Solaris 10 中的 DTrace 组件的源代码。请参看: http://www.sun.com/software/solaris/observability.jsp
💻 H
字号:
/* * Copyright 2005 Sun Microsystems, Inc.  All rights reserved. * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only. * See the file usr/src/LICENSING.NOTICE in this distribution or * http://www.opensolaris.org/license/ for details. */#ifndef _SYS_SYSTRACE_H#define	_SYS_SYSTRACE_H#pragma ident	"@(#)systrace.h	1.1	03/09/02 SMI"#include <sys/dtrace.h>#ifdef	__cplusplusextern "C" {#endif#ifdef _KERNELtypedef struct systrace_sysent {	dtrace_id_t	stsy_entry;	dtrace_id_t	stsy_return;	int64_t		(*stsy_underlying)();} systrace_sysent_t;extern systrace_sysent_t *systrace_sysent;extern systrace_sysent_t *systrace_sysent32;extern void (*systrace_probe)(dtrace_id_t, uintptr_t, uintptr_t,    uintptr_t, uintptr_t, uintptr_t);extern void systrace_stub(dtrace_id_t, uintptr_t, uintptr_t,    uintptr_t, uintptr_t, uintptr_t);extern int64_t dtrace_systrace_syscall(uintptr_t arg0, uintptr_t arg1,    uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5);#ifdef _SYSCALL32_IMPLextern int64_t dtrace_systrace_syscall32(uintptr_t arg0, uintptr_t arg1,    uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5);#endif#endif#ifdef	__cplusplus}#endif#endif	/* _SYS_SYSTRACE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -