mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 23:25:49 +00:00
We should not be initializing/starting/stoping timing functions multiple times. So this changes how the timing functions are structured to allow only one initialization, only start when stopped, and only stop when started. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
13 lines
242 B
C
13 lines
242 B
C
/*
|
|
* Copyright (c) 2020 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_TIMING_TYPES_H_
|
|
#define ZEPHYR_INCLUDE_TIMING_TYPES_H_
|
|
|
|
typedef uint64_t timing_t;
|
|
|
|
#endif /* ZEPHYR_INCLUDE_TIMING_TYPES_H_ */
|