summaryrefslogtreecommitdiffstats
path: root/debug.h
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2012-12-22 00:31:53 -0600
committerKyle Kaminski <kyle@kkaminsk.com>2012-12-22 00:31:53 -0600
commitadbfb7c71fe1e958a2a2397c7b88c3061043c54e (patch)
tree28743080d118905dd5199f382a2f535d39c5b20b /debug.h
downloadkernelhello-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.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/debug.h b/debug.h
new file mode 100644
index 0000000..1b973bf
--- /dev/null
+++ b/debug.h
@@ -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
+