readme

来自「早期freebsd实现」· 代码 · 共 114 行

TXT
114
字号
saute procfs lyonnaisprocfs supports two levels of directory.  the filesystem rootdirectory contains a representation of the system process table.this consists of an entry for each active and zombie process, andan additional entry "curproc" which always represents the processmaking the lookup request.each of the sub-directories contains several files.  these filesare used to control and interrogate processes.  the files implementedare:	file	- xxx.  the exec'ed file.	status  - r/o.  returns process status.	ctl	- w/o.  sends a control message to the process.			for example:				echo hup > /proc/curproc/note			will send a SIGHUP to the shell.			whereas				echo attach > /proc/1293/ctl			would set up process 1293 for debugging.			see below for more details.	mem	- r/w.  virtual memory image of the process.			parts of the address space are readable			only if they exist in the target process.			a more reasonable alternative might be			to return zero pages instead of an error.			comments?	note	- w/o.  writing a string here sends the			equivalent note to the process.			[ not implemented. ]	notepg	- w/o.  the same as note, but sends to all			members of the process group.			[ not implemented. ]	regs	- r/w.	process register set.  this can be read			or written any time even if the process			is not stopped.  since the bsd kernel			is single-processor, this implementation			will get the "right" register values.			a multi-proc kernel would need to do some			synchronisation.this then looks like:% ls -li /proctotal 0   9 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 0  17 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 1  89 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 10  25 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 22065 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 2572481 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 309 265 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 323129 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 3903209 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 4003217 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 4013273 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 408 393 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 48 409 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 50 465 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 57 481 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 59 537 dr-xr-xr-x  2 root  kmem   0 Sep 21 15:06 66 545 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 67 657 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 81 665 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 82 673 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 83 681 dr-xr-xr-x  2 root  wheel  0 Sep 21 15:06 843273 dr-xr-xr-x  2 jsp   staff  0 Sep 21 15:06 curproc% ls -li /proc/curproctotal 4083341 --w-------  1 jsp  staff       0 Sep 21 15:06 ctl1554 -r-xr-xr-x  1 bin  bin     90112 Mar 29 04:52 file3339 -rw-------  1 jsp  staff  118784 Sep 21 15:06 mem3343 --w-------  1 jsp  staff       0 Sep 21 15:06 note3344 --w-------  1 jsp  staff       0 Sep 21 15:06 notepg3340 -rw-------  1 jsp  staff       0 Sep 21 15:06 regs3342 -r--r--r--  1 jsp  staff       0 Sep 21 15:06 status% df /proc/curproc /proc/curproc/fileFilesystem  512-blocks    Used   Avail Capacity  Mounted onproc                 2       2       0   100%    /proc/dev/wd0a        16186   13548    1018    93%    /% cat /proc/curproc/statuscat 446 439 400 81 12,0 ctty 748620684 270000 0 0 0 20000 nochan 11 20 20 20 0 21 117the basic sequence of commands written to "ctl" would be	attach		- this stops the target process and			  arranges for the sending process			  to become the debug control process	wait		- wait for the target process to come to			  a steady state ready for debugging.	step		- single step, with no signal delivery.	run		- continue running, with no signal delivery,			  until next trap or breakpoint.	<signame>	- deliver signal <signame> and continue running.	detach		- continue execution of the target process			  and remove it from control by the debug processin a normal debugging environment, where the target is fork/exec'd bythe debugger, the debugger should fork and the child should stop itself(with a self-inflicted SIGSTOP).  the parent should do a "wait" then an"attach".  as before, the child will hit a breakpoint on the firstinstruction in any newly exec'd image.$Id: README,v 3.1 1993/12/15 09:40:17 jsp Exp $

⌨️ 快捷键说明

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