Re: How Can I develop a process monitor?

2000-10-03 Thread Alexander Viro
On Tue, 3 Oct 2000, [iso-8859-1] Abel Muñoz Alcaraz wrote: > Hi everybody, > > I want to develop a process monitor (like TOP) in a kernel module. > I think I must get the '/proc' superblock and replace the > inode_operations->mkdir,rmdir,create and open. None of these

How Can I develop a process monitor?

2000-10-03 Thread Abel Muñoz Alcaraz
Hi everybody, I want to develop a process monitor (like TOP) in a kernel module. I think I must get the '/proc' superblock and replace the inode_operations->mkdir,rmdir,create and open. Is this correct? Can I get the /proc superbloc with 'struct super_block *

How Can I develop a process monitor?

2000-10-03 Thread Abel Muñoz Alcaraz
Hi everybody, I want to develop a process monitor (like TOP) in a kernel module. I think I must get the '/proc' superblock and replace the inode_operations-mkdir,rmdir,create and open. Is this correct? Can I get the /proc superbloc with 'struct super_block *

Re: How Can I develop a process monitor?

2000-10-03 Thread Alexander Viro
On Tue, 3 Oct 2000, [iso-8859-1] Abel Muñoz Alcaraz wrote: Hi everybody, I want to develop a process monitor (like TOP) in a kernel module. I think I must get the '/proc' superblock and replace the inode_operations-mkdir,rmdir,create and open. None of these exist.