2008-06-01 02:33:44 +08:00
|
|
|
/****************************************************************************
|
2014-08-09 04:21:48 +08:00
|
|
|
* sched/wdog/wd_cancel.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-12 03:51:28 +08:00
|
|
|
* 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.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-06-01 02:33:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 02:33:44 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2008-06-01 02:33:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-12-15 02:39:29 +08:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-15 05:15:18 +08:00
|
|
|
#include <stdbool.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <assert.h>
|
2017-02-25 00:58:37 +08:00
|
|
|
#include <errno.h>
|
2014-08-22 01:16:55 +08:00
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
#include <nuttx/irq.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <nuttx/arch.h>
|
2014-08-22 01:16:55 +08:00
|
|
|
#include <nuttx/wdog.h>
|
2009-12-15 02:39:29 +08:00
|
|
|
|
2014-08-09 07:53:55 +08:00
|
|
|
#include "sched/sched.h"
|
2014-08-09 04:21:48 +08:00
|
|
|
#include "wdog/wdog.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 02:33:44 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2008-06-01 02:33:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 02:33:44 +08:00
|
|
|
/****************************************************************************
|
2012-07-15 03:30:31 +08:00
|
|
|
* Name: wd_cancel
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-15 03:30:31 +08:00
|
|
|
* This function cancels a currently running watchdog timer. Watchdog
|
2018-08-20 01:19:43 +08:00
|
|
|
* timers may be canceled from the interrupt level.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2014-08-21 22:44:29 +08:00
|
|
|
* wdog - ID of the watchdog to cancel.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2017-02-25 00:58:37 +08:00
|
|
|
* Zero (OK) is returned on success; A negated errno value is returned to
|
|
|
|
* indicate the nature of any failure.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-06-01 02:33:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-08-04 18:31:31 +08:00
|
|
|
int wd_cancel(FAR struct wdog_s *wdog)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2016-02-14 22:17:46 +08:00
|
|
|
irqstate_t flags;
|
2024-06-18 19:57:57 +08:00
|
|
|
|
|
|
|
if (wdog == NULL)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
/* Prohibit timer interactions with the timer queue until the
|
|
|
|
* cancellation is complete
|
|
|
|
*/
|
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
flags = enter_critical_section();
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-06-18 19:57:57 +08:00
|
|
|
/* Make sure that the watchdog is still active. */
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-06-18 19:57:57 +08:00
|
|
|
if (WDOG_ISACTIVE(wdog))
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2024-06-11 23:23:44 +08:00
|
|
|
bool head = list_is_head(&g_wdactivelist, &wdog->node);
|
2013-04-26 05:19:59 +08:00
|
|
|
|
|
|
|
/* Now, remove the watchdog from the timer queue */
|
|
|
|
|
2024-06-11 23:23:44 +08:00
|
|
|
list_delete(&wdog->node);
|
2014-08-08 01:39:16 +08:00
|
|
|
|
2024-06-11 23:23:44 +08:00
|
|
|
/* Mark the watchdog inactive */
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-06-11 23:23:44 +08:00
|
|
|
wdog->func = NULL;
|
2013-04-26 05:19:59 +08:00
|
|
|
|
2024-06-11 23:23:44 +08:00
|
|
|
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.
|
2014-08-08 01:39:16 +08:00
|
|
|
*/
|
2013-04-26 05:19:59 +08:00
|
|
|
|
2020-05-10 02:40:14 +08:00
|
|
|
nxsched_reassess_timer();
|
2014-08-08 01:39:16 +08:00
|
|
|
}
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
2012-07-15 03:30:31 +08:00
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
leave_critical_section(flags);
|
2024-06-18 19:57:57 +08:00
|
|
|
return OK;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|