Re: how to create in proc

From: Ingo Molnar (mingo@elte.hu)
Date: Tue Apr 03 2001 - 03:33:30 EST


On Tue, 3 Apr 2001, Srinivas Surabhi wrote:

> So kindly help me, what are the system calls/fuction calls to be
> used for the creation of sub-directory in /proc directory.

eg. to create a new "foo" directory in /proc/net:

        new_dir = proc_mkdir("foo", proc_net);

then use the resulting dir entry to create files in this new directory:

        entry = create_proc_entry("bar", 0700, new_dir);

and use remove_proc_entry() on the file entry and on the directory entry
to clean things up.

        Ingo

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Apr 07 2001 - 21:00:11 EST