* Copyright (c) 2020-2021 Huawei Device Co., Ltd.
*
* HDF is dual licensed: you can use it either under the terms of
* the GPL, or the BSD license, at your option.
* See the LICENSE file in the root of this repository for complete details.
*/
* @addtogroup OSAL
* @{
*
* @brief Defines the structures and interfaces for the Operating System Abstraction Layer (OSAL) module.
*
* The OSAL module OpenHarmony OS interface differences and provides unified OS interfaces externally,
* including the memory management, thread, mutex, spinlock, semaphore, timer, file, interrupt, time,
* atomic, firmware, and I/O operation modules.
*
* @since 1.0
* @version 1.0
*/
* @file osal_time.h
*
* @brief Declares the time, sleep, and delay interfaces.
*
* @since 1.0
* @version 1.0
*/
#ifndef OSAL_TIME_H
#define OSAL_TIME_H
#include "hdf_base.h"
#ifdef __cplusplus
extern "C" {
#endif
* @brief Defines time.
*/
typedef struct {
uint64_t sec;
uint64_t usec;
} OsalTimespec;
* @brief Describes thread sleep, in seconds.
*
* When a thread invokes this function, the CPU is released and the thread enters the sleep state.
*
* @param sec Indicates the sleep time, in seconds.
* @since 1.0
* @version 1.0
*/
void OsalSleep(uint32_t sec);
* @brief Describes thread sleep, in milliseconds.
*
* When a thread invokes this function, the CPU is released and the thread enters the sleep state.
*
* @param ms Indicates the sleep time, in milliseconds.
* @since 1.0
* @version 1.0
*/
void OsalMSleep(uint32_t ms);
* @brief Describes thread sleep, in microsecond.
*
* When a thread invokes this function, the CPU is released and the thread enters the sleep state.
*
* @param us Indicates the sleep time, in microsecond.
* @since 1.0
* @version 1.0
*/
void OsalUSleep(uint32_t us);
* @brief Obtains the second and microsecond time.
*
* @param time Indicates the pointer to the time structure {@link OsalTimespec}.
*
* @return Returns a value listed below: \n
* HDF_STATUS | Description
* ----------------------| -----------------------
* HDF_SUCCESS | The operation is successful.
* HDF_FAILURE | Failed to invoke the system function to obtain time.
* HDF_ERR_INVALID_PARAM | Invalid parameter.
*
* @since 1.0
* @version 1.0
*/
int32_t OsalGetTime(OsalTimespec *time);
* @brief Obtains time difference.
*
* @param start Indicates the pointer to the start time {@link OsalTimespec}.
* @param end Indicates the pointer to the end time {@link OsalTimespec}.
* @param diff Indicates the pointer to the time difference {@link OsalTimespec}.
*
* @return Returns a value listed below: \n
* HDF_STATUS | Description
* ----------------------| -----------------------
* HDF_SUCCESS | The operation is successful.
* HDF_ERR_INVALID_PARAM | Invalid parameter.
*
* @since 1.0
* @version 1.0
*/
int32_t OsalDiffTime(const OsalTimespec *start, const OsalTimespec *end, OsalTimespec *diff);
* @brief Obtains the system time.
*
* @return Returns the system time, in milliseconds.
* @since 1.0
* @version 1.0
*/
uint64_t OsalGetSysTimeMs(void);
* @brief Describes thread delay, in milliseconds.
*
* When a thread invokes this function, the CPU is not released. This function returns after waiting for milliseconds.
*
* @param ms Indicates the delay time, in milliseconds.
* @since 1.0
* @version 1.0
*/
void OsalMDelay(uint32_t ms);
* @brief Describes thread delay, in microseconds.
*
* When a thread invokes this function, the CPU is not released. This function returns after waiting for microseconds.
*
* @param us Indicates the delay time, in microseconds.
* @since 1.0
* @version 1.0
*/
void OsalUDelay(uint32_t us);
#ifdef __cplusplus
}
#endif
#endif