X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Flttngtop.c;h=5ab8e947f150544a5cf134792fb0a22fde5da30a;hb=7314c8557fae846e361231d2c693ef6355884133;hp=11635b47e3df171c1cc91363a1afa53634057ad3;hpb=6ff9c17377ad5dc836a8e81c6d9e29bb2aea61b0;p=lttngtop.git diff --git a/src/lttngtop.c b/src/lttngtop.c index 11635b4..5ab8e94 100644 --- a/src/lttngtop.c +++ b/src/lttngtop.c @@ -88,6 +88,10 @@ void *ncurses_display(void *p) unsigned int current_display_index = 0; sem_wait(&bootstrap); + /* + * Prevent the 1 second delay when we hit ESC + */ + ESCDELAY = 0; init_ncurses(); while (1) { @@ -509,11 +513,9 @@ int bt_context_add_traces_recursive(struct bt_context *ctx, const char *path, } metafd = openat(dirfd, "metadata", O_RDONLY); if (metafd < 0) { - ret = close(dirfd); - if (ret < 0) { - perror("close"); - goto error; - } + close(dirfd); + ret = -1; + continue; } else { int trace_id;