aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/arch/default/odp_global_time.c
blob: faa0ec3f18dc05edf1fd7435d6a8273a0f4c9c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright (c) 2015-2018, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#include <odp_arch_time_internal.h>

int cpu_has_global_time(void)
{
	return 0;
}

uint64_t cpu_global_time(void)
{
	return 0;
}

uint64_t cpu_global_time_freq(void)
{
	return 0;
}