X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fbabeltrace.c;h=1623b6ea7f9fe7458ace5ea48ee396f08d5051da;hb=0d72b8c329ad51d14ab4e83330b38c2c8da69dd4;hp=b564e79d20151685bcf7d31a73839b08160f7b50;hpb=8b596b57e1ff348a11b596b85278c17445e06afb;p=babeltrace.git diff --git a/lib/babeltrace.c b/lib/babeltrace.c index b564e79d..1623b6ea 100644 --- a/lib/babeltrace.c +++ b/lib/babeltrace.c @@ -1,8 +1,4 @@ /* - * babeltrace.c - * - * Babeltrace Library - * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers @@ -26,18 +22,25 @@ * SOFTWARE. */ -#include -#include -#include +#include +#include #include -bool babeltrace_verbose, babeltrace_debug; +int bt_version_get_major(void) +{ + return BT_VERSION_MAJOR; +} + +int bt_version_get_minor(void) +{ + return BT_VERSION_MINOR; +} + +int bt_version_get_patch(void) { + return BT_VERSION_PATCH; +} -static -void __attribute__((constructor)) init_babeltrace_lib(void) +const char *bt_version_get_extra(void) { - if (getenv("BABELTRACE_VERBOSE")) - babeltrace_verbose = 1; - if (getenv("BABELTRACE_DEBUG")) - babeltrace_debug = 1; + return BT_VERSION_EXTRA; }