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

📄 proc.h

📁 基于组件方式开发操作系统的OSKIT源代码
💻 H
📖 第 1 页 / 共 2 页
字号:
/*	$NetBSD: proc.h,v 1.116 2000/12/11 05:29:03 mycroft Exp $	*//*- * Copyright (c) 1986, 1989, 1991, 1993 *	The Regents of the University of California.  All rights reserved. * (c) UNIX System Laboratories, Inc. * All or some portions of this file are derived from material licensed * to the University of California by American Telephone and Telegraph * Co. or Unix System Laboratories, Inc. and are reproduced herein with * the permission of UNIX System Laboratories, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the University of *	California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *	@(#)proc.h	8.15 (Berkeley) 5/19/95 */#ifndef _SYS_PROC_H_#define	_SYS_PROC_H_#if defined(_KERNEL) && !defined(_LKM)#include "opt_multiprocessor.h"#endif#if defined(_KERNEL)#include <machine/cpu.h>		/* curcpu() and cpu_info */#endif#include <machine/proc.h>		/* Machine-dependent proc substruct. */#include <sys/lock.h>#include <sys/queue.h>#include <sys/callout.h>#ifdef OSKIT#include <oskit/dev/dev.h>#endif/* * One structure allocated per session. */struct	session {	int	s_count;		/* Ref cnt; pgrps in session. */	struct	proc *s_leader;		/* Session leader. */	struct	vnode *s_ttyvp;		/* Vnode of controlling terminal. */	struct	tty *s_ttyp;		/* Controlling terminal. */	char	s_login[MAXLOGNAME];	/* Setlogin() name. */	pid_t	s_sid;			/* session ID (pid of leader) */};/* * One structure allocated per process group. */struct	pgrp {	LIST_ENTRY(pgrp) pg_hash;	/* Hash chain. */	LIST_HEAD(, proc) pg_members;	/* Pointer to pgrp members. */	struct	session *pg_session;	/* Pointer to session. */	pid_t	pg_id;			/* Pgrp id. */	int	pg_jobc;	/* # procs qualifying pgrp for job control */};/* * One structure allocated per emulation. */struct exec_package;struct ps_strings;struct	emul {	char	e_name[8];		/* Symbolic name */	const char *e_path;		/* Extra emulation path (NULL if none)*/#ifndef __HAVE_MINIMAL_EMUL	int	e_flags;		/* Miscellaneous flags */					/* Syscall handling function */	int	*e_errno;		/* Errno array */					/* Signal sending function */	int	e_nosys;		/* Offset of the nosys() syscall */	int	e_nsysent;		/* Number of system call entries */#endif	const struct sysent *e_sysent;	/* System call array */	const char * const *e_syscallnames;	/* System call name array */	void	(*e_sendsig) __P((sig_t, int, sigset_t *, u_long));	char	*e_sigcode;		/* Start of sigcode */	char	*e_esigcode;		/* End of sigcode */					/* Per-process hooks */	void	(*e_proc_exec) __P((struct proc *, struct exec_package *));	void	(*e_proc_fork) __P((struct proc *p, struct proc *parent));	void	(*e_proc_exit) __P((struct proc *));#ifdef __HAVE_SYSCALL_INTERN	void	(*e_syscall_intern) __P((struct proc *));#else	void	(*e_syscall) __P((void));#endif};#define EMUL_HAS_SYS___syscall	0x001	/* has SYS___syscall *//* * Description of a process. * * This structure contains the information needed to manage a thread of * control, known in UN*X as a process; it has references to substructures * containing descriptions of things that the process uses, but may share * with related processes.  The process structure and the substructures * are always addressible except for those marked "(PROC ONLY)" below, * which might be addressible only on a processor on which the process * is running. */struct	proc {	struct	proc *p_forw;		/* Doubly-linked run/sleep queue. */	struct	proc *p_back;	LIST_ENTRY(proc) p_list;	/* List of all processes. */	/* substructures: */	struct	pcred *p_cred;		/* Process owner's identity. */	struct	filedesc *p_fd;		/* Ptr to open files structure. */	struct	cwdinfo *p_cwdi;	/* cdir/rdir/cmask info */	struct	pstats *p_stats;	/* Accounting/statistics (PROC ONLY). */	struct	plimit *p_limit;	/* Process limits. */	struct	vmspace *p_vmspace;	/* Address space. */	struct	sigacts *p_sigacts;	/* Signal actions, state (PROC ONLY). */#define	p_ucred		p_cred->pc_ucred#define	p_rlimit	p_limit->pl_rlimit	int	p_exitsig;		/* signal to sent to parent on exit */	int	p_flag;			/* P_* flags. */	struct cpu_info * __volatile p_cpu; /* CPU we're running on if					       SONPROC */	u_char	p_unused;		/* XXX: used to be emulation flag */	char	p_stat;			/* S* process status. */	char	p_pad1[2];	pid_t	p_pid;			/* Process identifier. */	LIST_ENTRY(proc) p_hash;	/* Hash chain. */	LIST_ENTRY(proc) p_pglist;	/* List of processes in pgrp. */	struct	proc *p_pptr;	 	/* Pointer to parent process. */	LIST_ENTRY(proc) p_sibling;	/* List of sibling processes. */	LIST_HEAD(, proc) p_children;	/* Pointer to list of children. *//* The following fields are all zeroed upon creation in fork. */#define	p_startzero	p_oppid	pid_t	p_oppid;	 /* Save parent pid during ptrace. XXX */	int	p_dupfd;	 /* Sideways return value from filedescopen. XXX */	/* scheduling */	u_int	p_estcpu;	 /* Time averaged value of p_cpticks. XXX belongs in p_startcopy section */	int	p_cpticks;	 /* Ticks of cpu time. */	fixpt_t	p_pctcpu;	 /* %cpu for this process during p_swtime */	void	*p_wchan;	 /* Sleep address. */	struct callout p_tsleep_ch;/* callout for tsleep */	const char *p_wmesg;	 /* Reason for sleep. */	u_int	p_swtime;	 /* Time swapped in or out. */	u_int	p_slptime;	 /* Time since last blocked. */	struct	callout p_realit_ch;	/* real time callout */	struct	itimerval p_realtimer;	/* Alarm timer. */	struct	timeval p_rtime;	/* Real time. */	u_quad_t p_uticks;		/* Statclock hits in user mode. */	u_quad_t p_sticks;		/* Statclock hits in system mode. */	u_quad_t p_iticks;		/* Statclock hits processing intr. */	int	p_traceflag;		/* Kernel trace points. */	struct 	file *p_tracep;		/* Trace to file */	sigset_t p_siglist;		/* Signals arrived but not delivered. */	char	p_sigcheck;		/* May have deliverable signals. */	struct	vnode *p_textvp;	/* Vnode of executable. */	int	p_locks;		/* DEBUG: lockmgr count of held locks */	int	p_holdcnt;		/* If non-zero, don't swap. */	const struct emul *p_emul;	/* Emulation information */	void	*p_emuldata;		/* Per-process emulation data, or NULL.					 * Malloc type M_EMULDATA *//* End area that is zeroed on creation. */#define	p_endzero	p_startcopy/* The following fields are all copied upon creation in fork. */#define	p_startcopy	p_sigmask	sigset_t p_sigmask;	/* Current signal mask. */	sigset_t p_sigignore;	/* Signals being ignored. */	sigset_t p_sigcatch;	/* Signals being caught by user. */	u_char	p_priority;	/* Process priority. */	u_char	p_usrpri;	/* User-priority based on p_cpu and p_nice. */	u_char	p_nice;		/* Process "nice" value. */	char	p_comm[MAXCOMLEN+1];	struct 	pgrp *p_pgrp;	/* Pointer to process group. */	void	*p_ctxlink;	/* uc_link {get,set}context */	struct	ps_strings *p_psstr;	/* address of process's ps_strings */	size_t	p_psargv;		/* offset of ps_argvstr in above */	size_t	p_psnargv;		/* offset of ps_nargvstr in above */	size_t	p_psenv;		/* offset of ps_envstr in above */	size_t	p_psnenv;		/* offset of ps_nenvstr in above *//* End area that is copied on creation. */

⌨️ 快捷键说明

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