aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/traceevent/parse-utils.c
diff options
context:
space:
mode:
authorNamhyung Kim <[email protected]>2014-01-15 01:45:27 +0000
committerArnaldo Carvalho de Melo <[email protected]>2014-01-15 18:10:36 +0000
commite825e756f84eab0e68d7d6644c018c3412748406 (patch)
treed128b991d235fc7b09cf046929ce4438b104b5b3 /tools/lib/traceevent/parse-utils.c
parenttools lib traceevent: Get rid of malloc_or_die() in trace_seq_init() (diff)
downloadkernel-e825e756f84eab0e68d7d6644c018c3412748406.tar.gz
kernel-e825e756f84eab0e68d7d6644c018c3412748406.zip
tools lib traceevent: Get rid of die() finally!!
Now all of its users were gone. :) Signed-off-by: Namhyung Kim <[email protected]> Reviewed-by: Jiri Olsa <[email protected]> Cc: Frederic Weisbecker <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Steven Rostedt <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/lib/traceevent/parse-utils.c')
-rw-r--r--tools/lib/traceevent/parse-utils.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/tools/lib/traceevent/parse-utils.c b/tools/lib/traceevent/parse-utils.c
index bba701cf10e6..eda07fa31dca 100644
--- a/tools/lib/traceevent/parse-utils.c
+++ b/tools/lib/traceevent/parse-utils.c
@@ -25,40 +25,6 @@
#define __weak __attribute__((weak))
-void __vdie(const char *fmt, va_list ap)
-{
- int ret = errno;
-
- if (errno)
- perror("trace-cmd");
- else
- ret = -1;
-
- fprintf(stderr, " ");
- vfprintf(stderr, fmt, ap);
-
- fprintf(stderr, "\n");
- exit(ret);
-}
-
-void __die(const char *fmt, ...)
-{
- va_list ap;
-
- va_start(ap, fmt);
- __vdie(fmt, ap);
- va_end(ap);
-}
-
-void __weak die(const char *fmt, ...)
-{
- va_list ap;
-
- va_start(ap, fmt);
- __vdie(fmt, ap);
- va_end(ap);
-}
-
void __vwarning(const char *fmt, va_list ap)
{
if (errno)
@@ -117,13 +83,3 @@ void __weak pr_stat(const char *fmt, ...)
__vpr_stat(fmt, ap);
va_end(ap);
}
-
-void __weak *malloc_or_die(unsigned int size)
-{
- void *data;
-
- data = malloc(size);
- if (!data)
- die("malloc");
- return data;
-}