nuttx/sched/wdog/wd_cancel.c
ouyangxiangzhen 3eedf5f22b sched/wdog: Simplify timer expiration for hrtimer.
This commit simplified the timer expiration for hrtimer.

Signed-off-by: ouyangxiangzhen <ouyangxiangzhen@xiaomi.com>
2026-02-02 13:26:22 +08:00

115 lines
3.5 KiB
C

/****************************************************************************
* sched/wdog/wd_cancel.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdbool.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>
#include <nuttx/wdog.h>
#include <nuttx/sched_note.h>
#include "sched/sched.h"
#include "wdog/wdog.h"
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: wd_cancel
*
* Description:
* This function cancels a currently running watchdog timer. Watchdog
* timers may be canceled from the interrupt level.
*
* Input Parameters:
* wdog - ID of the watchdog to cancel.
*
* Returned Value:
* Zero (OK) is returned on success; A negated errno value is returned to
* indicate the nature of any failure.
*
****************************************************************************/
int wd_cancel(FAR struct wdog_s *wdog)
{
FAR struct wdog_s *first;
irqstate_t flags;
int ret = -EINVAL;
if (wdog != NULL)
{
/* Prohibit timer interactions with the timer queue until the
* cancellation is complete
*/
flags = enter_critical_section();
/* Make sure that the watchdog is valid and still active. */
if (WDOG_ISACTIVE(wdog))
{
first = list_first_entry(&g_wdactivelist, struct wdog_s, node);
/* Now, remove the watchdog from the timer queue */
list_delete_fast(&wdog->node);
/* Mark the watchdog inactive */
wdog->func = NULL;
if (first == wdog && !wd_in_callback())
{
/* If the watchdog is at the head of the timer queue, then
* we will need to re-adjust the interval timer that will
* generate the next interval event.
*/
if (!list_is_empty(&g_wdactivelist))
{
wd_timer_start(wd_next_expire(), false);
}
else
{
wd_timer_cancel();
}
}
ret = OK;
}
leave_critical_section(flags);
sched_note_wdog(NOTE_WDOG_CANCEL, (FAR void *)wdog->func,
(FAR void *)(uintptr_t)wdog->expired);
}
return ret;
}