X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ftime.h;h=87adf17d75d40af2945ef392bb45129bb777d11b;hp=894ab9259a135a3f7816d74e3475d268ec328b13;hb=HEAD;hpb=2a1135fa25ad1fcad3b395e795aa6d41afc90c54 diff --git a/src/common/time.h b/src/common/time.h deleted file mode 100644 index 894ab9259..000000000 --- a/src/common/time.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (C) 2016 - Jérémie Galarneau - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef LTTNG_TIME_H -#define LTTNG_TIME_H - -#include -#include - -#define MSEC_PER_SEC 1000ULL -#define NSEC_PER_SEC 1000000000ULL -#define NSEC_PER_MSEC 1000000ULL -#define NSEC_PER_USEC 1000ULL - -bool locale_supports_utf8(void); - -#define NSEC_UNIT "ns" -#define USEC_UNIT (locale_supports_utf8() ? "µs" : "us") -#define MSEC_UNIT "ms" -#define SEC_UNIT "s" -#define MIN_UNIT "m" -#define HR_UNIT "h" - -/* - * timespec_to_ms: Convert timespec to milliseconds. - * - * Returns 0 on success, else -1 on error. errno is set to EOVERFLOW if - * input would overflow the output in milliseconds. - */ -int timespec_to_ms(struct timespec ts, unsigned long *ms); - -/* - * timespec_abs_diff: Absolute difference between timespec. - */ -struct timespec timespec_abs_diff(struct timespec ts_a, struct timespec ts_b); - -#endif /* LTTNG_TIME_H */