]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/net/blip/shell/ShellCommandP.nc
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / tos / lib / net / blip / shell / ShellCommandP.nc
diff --git a/tos/lib/net/blip/shell/ShellCommandP.nc b/tos/lib/net/blip/shell/ShellCommandP.nc
new file mode 100644 (file)
index 0000000..6f9af62
--- /dev/null
@@ -0,0 +1,8 @@
+
+generic module ShellCommandP(char cmd_name[]) {
+  uses interface RegisterShellCommand;
+} implementation {
+  event char *RegisterShellCommand.getCommandName() {
+    return cmd_name;
+  }
+}