Support new liblttng-ust-ctl error code
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 6 Nov 2012 18:47:17 +0000 (13:47 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Tue, 6 Nov 2012 19:00:56 +0000 (14:00 -0500)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/bin/lttng-sessiond/ust-app.c

index 4cae85d6e75719c4c1db5ca26c3627b2bdd2c803..8b1665a06568de2bc90a4a90e61b40e35af4800c 100644 (file)
@@ -25,6 +25,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 #include <urcu/compiler.h>
+#include <lttng/ust-error.h>
 
 #include <common/common.h>
 #include <common/sessiond-comm/sessiond-comm.h>
@@ -1580,7 +1581,7 @@ int ust_app_list_events(struct lttng_event **events)
                }
 
                while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
-                                               &uiter)) != -ENOENT) {
+                                       &uiter)) != -LTTNG_UST_ERR_NOENT) {
                        health_code_update(&health_thread_cmd);
                        if (count >= nbmem) {
                                /* In case the realloc fails, we free the memory */
@@ -1658,7 +1659,7 @@ int ust_app_list_event_fields(struct lttng_event_field **fields)
                }
 
                while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
-                                               &uiter)) != -ENOENT) {
+                                       &uiter)) != -LTTNG_UST_ERR_NOENT) {
                        health_code_update(&health_thread_cmd);
                        if (count >= nbmem) {
                                /* In case the realloc fails, we free the memory */
This page took 0.030809 seconds and 5 git commands to generate.