cmake_minimum_required(VERSION 2.6)
PROJECT(procd C)
-ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -Wmissing-declarations)
+ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations)
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
in_n = container_of(node_new, struct service_instance, node);
if (in_o && in_n) {
+ DPRINTF("Update instance %s::%s\n", in_o->srv->name, in_o->name);
instance_update(in_o, in_n);
instance_free(in_n);
} else if (in_o) {
+ DPRINTF("Free instance %s::%s\n", in_o->srv->name, in_o->name);
instance_stop(in_o, false);
instance_free(in_o);
} else if (in_n) {
+ DPRINTF("Create instance %s::%s\n", in_o->srv->name, in_o->name);
instance_start(in_n);
}
}
name = blobmsg_data(cur);
s = avl_find_element(&services, name, s, avl);
- if (s)
+ if (s) {
+ DPRINTF("Update service %s\n", name);
return service_update(s, msg, tb);
+ }
+ DPRINTF("Create service %s\n", name);
s = service_alloc(name);
if (!s)
return UBUS_STATUS_UNKNOWN_ERROR;