Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / tools / perf / ui / helpline.c
blob5b74a7eba210b20cb693dbedaee482508adcd2cd
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
5 #include "../debug.h"
6 #include "helpline.h"
7 #include "ui.h"
8 #include "../util.h"
10 char ui_helpline__current[512];
12 static void nop_helpline__pop(void)
16 static void nop_helpline__push(const char *msg __maybe_unused)
20 static int nop_helpline__show(const char *fmt __maybe_unused,
21 va_list ap __maybe_unused)
23 return 0;
26 static struct ui_helpline default_helpline_fns = {
27 .pop = nop_helpline__pop,
28 .push = nop_helpline__push,
29 .show = nop_helpline__show,
32 struct ui_helpline *helpline_fns = &default_helpline_fns;
34 void ui_helpline__pop(void)
36 helpline_fns->pop();
39 void ui_helpline__push(const char *msg)
41 helpline_fns->push(msg);
44 void ui_helpline__vpush(const char *fmt, va_list ap)
46 char *s;
48 if (vasprintf(&s, fmt, ap) < 0)
49 vfprintf(stderr, fmt, ap);
50 else {
51 ui_helpline__push(s);
52 free(s);
56 void ui_helpline__fpush(const char *fmt, ...)
58 va_list ap;
60 va_start(ap, fmt);
61 ui_helpline__vpush(fmt, ap);
62 va_end(ap);
65 void ui_helpline__puts(const char *msg)
67 ui_helpline__pop();
68 ui_helpline__push(msg);
71 int ui_helpline__vshow(const char *fmt, va_list ap)
73 return helpline_fns->show(fmt, ap);