diff options
author | Kyle K <kylek389@gmail.com> | 2012-12-22 00:31:53 -0600 |
---|---|---|
committer | Kyle Kaminski <kyle@kkaminsk.com> | 2012-12-22 00:31:53 -0600 |
commit | adbfb7c71fe1e958a2a2397c7b88c3061043c54e (patch) | |
tree | 28743080d118905dd5199f382a2f535d39c5b20b /debug.h | |
download | kernelhello-adbfb7c71fe1e958a2a2397c7b88c3061043c54e.tar.gz kernelhello-adbfb7c71fe1e958a2a2397c7b88c3061043c54e.tar.bz2 kernelhello-adbfb7c71fe1e958a2a2397c7b88c3061043c54e.zip |
initial commit
this is a simple try of unuseful code in kernel space, debugfs is
used to create a dir and a file
Diffstat (limited to 'debug.h')
-rw-r--r-- | debug.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#ifndef _DEBUG_H_ +#define _DEBUG_H_ + +struct dentry; + +int debug_init(struct dentry **, struct dentry **); +int debug_destroy(struct dentry *, struct dentry *); + +#endif + |