diff options
author | Alexis211 <alexis211@gmail.com> | 2010-04-08 10:05:42 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-04-08 10:05:42 +0200 |
commit | ad27a90fa788a81253b5f2ad621d82ae574ae65d (patch) | |
tree | 3fc2ecf6655300c285405bd8d9bbf60d01f2d210 /src/modules | |
parent | ee348973b0cb0f6481e4fd6e7494c63167c9759c (diff) | |
download | TCE-ad27a90fa788a81253b5f2ad621d82ae574ae65d.tar.gz TCE-ad27a90fa788a81253b5f2ad621d82ae574ae65d.zip |
0.0.4 is out
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/manager/main.c | 1 | ||||
-rw-r--r-- | src/modules/test/main.c | 3 |
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; |