dt_regset.h

来自「Sun Solaris 10 中的 DTrace 组件的源代码。请参看: htt」· C头文件 代码 · 共 37 行

H
37
字号
/* * 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	_DT_REGSET_H#define	_DT_REGSET_H#pragma ident	"@(#)dt_regset.h	1.1	03/09/02 SMI"#include <sys/types.h>#ifdef	__cplusplusextern "C" {#endiftypedef struct dt_regset {	ulong_t dr_size;		/* number of registers in set */	ulong_t *dr_bitmap;		/* bitmap of active registers */} dt_regset_t;extern dt_regset_t *dt_regset_create(ulong_t);extern void dt_regset_destroy(dt_regset_t *);extern void dt_regset_reset(dt_regset_t *);extern int dt_regset_alloc(dt_regset_t *);extern void dt_regset_free(dt_regset_t *, int);#ifdef	__cplusplus}#endif#endif	/* _DT_REGSET_H */

⌨️ 快捷键说明

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