X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Ftime.h;h=dc3f7634223ed8c79810c7f3c98cd117864a8f27;hb=3afa94aeca5a0daae40fd7b6cc96b7e4c150c7d8;hp=8588cf554c487912875253cd81f1631529bda38a;hpb=a8b66566890a353cc3a89836281541195ad69d73;p=lttng-tools.git diff --git a/src/common/time.h b/src/common/time.h index 8588cf554..dc3f76342 100644 --- a/src/common/time.h +++ b/src/common/time.h @@ -1,19 +1,8 @@ /* - * Copyright (C) 2016 - Jérémie Galarneau + * 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. + * SPDX-License-Identifier: LGPL-2.1-or-later * - * 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 @@ -24,6 +13,10 @@ #include #include +#if defined(__cplusplus) +extern "C" { +#endif + #define MSEC_PER_SEC 1000ULL #define NSEC_PER_SEC 1000000000ULL #define NSEC_PER_MSEC 1000000ULL @@ -40,7 +33,6 @@ #define ISO8601_STR_LEN sizeof("YYYYmmddTHHMMSS+HHMM") #define DATETIME_STR_LEN sizeof("YYYYmmdd-HHMMSS") -LTTNG_HIDDEN bool locale_supports_utf8(void); #define NSEC_UNIT "ns" @@ -56,13 +48,11 @@ bool locale_supports_utf8(void); * Returns 0 on success, else -1 on error. errno is set to EOVERFLOW if * input would overflow the output in milliseconds. */ -LTTNG_HIDDEN int timespec_to_ms(struct timespec ts, unsigned long *ms); /* * timespec_abs_diff: Absolute difference between timespec. */ -LTTNG_HIDDEN struct timespec timespec_abs_diff(struct timespec ts_a, struct timespec ts_b); /* @@ -72,10 +62,12 @@ struct timespec timespec_abs_diff(struct timespec ts_a, struct timespec ts_b); * * Returns 0 on success, else -1 on error. */ -LTTNG_HIDDEN int time_to_iso8601_str(time_t time, char *str, size_t len); -LTTNG_HIDDEN int time_to_datetime_str(time_t time, char *str, size_t len); +#if defined(__cplusplus) +} +#endif + #endif /* LTTNG_TIME_H */