summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/manager/main.c1
-rw-r--r--src/modules/test/main.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/modules/manager/main.c b/src/modules/manager/main.c
index d211831..58d9232 100644
--- a/src/modules/manager/main.c
+++ b/src/modules/manager/main.c
@@ -56,7 +56,6 @@ struct method_ret handle_nothing(struct method_data *d) {
struct method_ret handle_open(struct method_data *d) {
CHKSSTR(d, 0);
char *svc = d->parameters[0].p;
- printk("open: "); printk(svc); printk("\n");
char *sep, *res;
sep = strchr(svc, ':');
if (sep != 0) *sep = '0';
diff --git a/src/modules/test/main.c b/src/modules/test/main.c
index 88242e5..507567f 100644
--- a/src/modules/test/main.c
+++ b/src/modules/test/main.c
@@ -38,9 +38,6 @@ int main() {
c_logSvc("{1} Sending a test message to manager", LL_STATUS);
c_nothing(1, 0);
- Object t = open("test");
- printk("Open 'test' : "); printk_int(t); printk("\n");
-
c_logSvc("{1} Thread now sleeping...", LL_WARNING);
while (1) thread_sleep(1000);
return 0;