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

📄 iproc.h

📁 早期freebsd实现
💻 H
字号:
/*************************************************************************** * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE * * is provided to you without charge, and with no warranty.  You may give  * * away copies of JOVE, including sources, provided that this notice is    * * included in all the files.                                              * ***************************************************************************/struct process {	Process	*p_next;#ifdef	PIPEPROCS	int	p_toproc,	/* read p_fromproc and write p_toproc */		p_portpid,	/* pid of child (the portsrv) */		p_pid;		/* pid of real child i.e. not portsrv */#else	int	p_fd,		/* file descriptor of pty? opened r/w */		p_pid;		/* pid of child (the shell) */#endif	Buffer	*p_buffer;	/* add output to end of this buffer */	char	*p_name;	/* ... */	char	p_state,	/* State */		p_howdied,	/* Killed? or Exited? */		p_reason;	/* If signaled, p_reason is the signal; else				   it is the the exit code */	Mark	*p_mark;	/* where output left us */	char	p_dbx_mode;	/* whether to parse output for file/lineno				   pairs */};extern int  NumProcs;#ifdef	PIPEPROCSextern File	*ProcInput;extern int	kbd_pid;#elsefd_set global_fd;#endifextern void#ifdef	PIPEPROCS	read_proc proto((int, int)),#else	read_proc proto((int)),#endif	pinit proto((void)),	KillProcs proto((void)),	pbuftiedp proto((Buffer *));extern char *	pstate proto((Process *));

⌨️ 快捷键说明

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