* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
* @addtogroup FFRT
* @{
*
* @brief Provides FFRT C APIs.
*
* @since 12
*/
* @file timer.h
*
* @brief Declares the timer interfaces in C.
*
* @library libffrt.z.so
* @kit FunctionFlowRuntimeKit
* @syscap SystemCapability.Resourceschedule.Ffrt.Core
* @since 12
*/
#ifndef FFRT_API_C_TIMER_H
#define FFRT_API_C_TIMER_H
#include <stdbool.h>
#include "type_def.h"
* @brief Starts a timer on an ffrt worker.
*
* @param qos Indicates the QoS of the worker that runs timer.
* @param timeout Indicates the number of milliseconds that specifies timeout.
* @param data Indicates user data used in cb.
* @param cb Indicates user cb which will be executed when timeout.
* @param repeat Indicates whether to repeat this timer.
* @return A timer handle.
* @since 12
*/
FFRT_C_API ffrt_timer_t ffrt_timer_start(ffrt_qos_t qos, uint64_t timeout, void* data, ffrt_timer_cb cb, bool repeat);
* @brief Stops a timer on ffrt worker.
*
* @param qos Indicates the QoS of the worker that runs timer.
* @param handle Indicates the target timer handle.
* @return <b>0</b> if success;
* <b>-1</b> otherwise.
* @since 12
*/
FFRT_C_API int ffrt_timer_stop(ffrt_qos_t qos, ffrt_timer_t handle);
#endif