[EMAIL PROTECTED] wrote:
> Especialy, I am interested now about how can I make a program wich
> be able to show me what files use each process. Ot it is that allready
> done somewhere?
There exists a tool called lsof than can list which files are open by
which process. lsof uses /dev/kmem and not procfs to find it's values,
probably to get more detailed information not available using procfs.
Another tool is fuser, which can be used if you want to find out which
processes has a specific file/device/directory open. fuser uses procfs.
---
Henrik Nordström