pr_waitid.c

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

C
92
字号
/* * 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. */#pragma ident	"@(#)pr_waitid.c	1.3	00/03/05 SMI"#include <sys/isa_defs.h>#include <stdlib.h>#include <unistd.h>#include <string.h>#include <errno.h>#include <sys/types.h>#include <sys/wait.h>#include "P32ton.h"#include "libproc.h"/* * waitid() system call -- executed by subject process */intpr_waitid(struct ps_prochandle *Pr,	idtype_t idtype, id_t id, siginfo_t *infop, int options){	sysret_t rval;			/* return value from waitid() */	argdes_t argd[4];		/* arg descriptors for waitid() */	argdes_t *adp;	int error;#ifdef _LP64	siginfo32_t siginfo32;#endif	/* _LP64 */	if (Pr == NULL)		/* no subject process */		return (waitid(idtype, id, infop, options));	adp = &argd[0];		/* idtype argument */	adp->arg_value = idtype;	adp->arg_object = NULL;	adp->arg_type = AT_BYVAL;	adp->arg_inout = AI_INPUT;	adp->arg_size = 0;	adp++;			/* id argument */	adp->arg_value = id;	adp->arg_object = NULL;	adp->arg_type = AT_BYVAL;	adp->arg_inout = AI_INPUT;	adp->arg_size = 0;	adp++;			/* infop argument */	adp->arg_value = 0;	adp->arg_type = AT_BYREF;	adp->arg_inout = AI_OUTPUT;#ifdef _LP64	if (Pstatus(Pr)->pr_dmodel == PR_MODEL_ILP32) {		adp->arg_object = &siginfo32;		adp->arg_size = sizeof (siginfo32);	} else {		adp->arg_object = infop;		adp->arg_size = sizeof (*infop);	}#else	/* _LP64 */	adp->arg_object = infop;	adp->arg_size = sizeof (*infop);#endif	/* _LP64 */	adp++;			/* options argument */	adp->arg_value = options;	adp->arg_object = NULL;	adp->arg_type = AT_BYVAL;	adp->arg_inout = AI_INPUT;	adp->arg_size = 0;	error = Psyscall(Pr, &rval, SYS_waitsys, 4, &argd[0]);	if (error) {		errno = (error > 0)? error : ENOSYS;		return (-1);	}#ifdef _LP64	if (Pstatus(Pr)->pr_dmodel == PR_MODEL_ILP32)		siginfo_32_to_n(&siginfo32, infop);#endif	/* _LP64 */	return (0);}

⌨️ 快捷键说明

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