7dabc6ff2f
Before wdog module refactoring, we change the sq to double linked list. Signed-off-by: ligd <liguiding1@xiaomi.com>
113 lines
3.3 KiB
C
113 lines
3.3 KiB
C
/****************************************************************************
|
|
* sched/wdog/wd_cancel.c
|
|
*
|
|
* 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 "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)
|
|
{
|
|
irqstate_t flags;
|
|
int ret = -EINVAL;
|
|
|
|
/* Prohibit timer interactions with the timer queue until the
|
|
* cancellation is complete
|
|
*/
|
|
|
|
flags = enter_critical_section();
|
|
|
|
/* Make sure that the watchdog is initialized (non-NULL) and is still
|
|
* active.
|
|
*/
|
|
|
|
if (wdog != NULL && WDOG_ISACTIVE(wdog))
|
|
{
|
|
bool head = list_is_head(&g_wdactivelist, &wdog->node);
|
|
FAR struct wdog_s *next = list_next_entry(wdog, struct wdog_s, node);
|
|
|
|
/* If there is a watchdog in the timer queue after the one that
|
|
* is being canceled, then it inherits the remaining ticks.
|
|
*/
|
|
|
|
if (next)
|
|
{
|
|
next->lag += wdog->lag;
|
|
}
|
|
|
|
/* Now, remove the watchdog from the timer queue */
|
|
|
|
list_delete(&wdog->node);
|
|
|
|
/* Mark the watchdog inactive */
|
|
|
|
wdog->func = NULL;
|
|
|
|
if (head)
|
|
{
|
|
/* 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.
|
|
*/
|
|
|
|
nxsched_reassess_timer();
|
|
}
|
|
|
|
/* Return success */
|
|
|
|
ret = OK;
|
|
}
|
|
|
|
leave_critical_section(flags);
|
|
return ret;
|
|
}
|