You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by vi...@apache.org on 2016/10/10 19:26:42 UTC

[26/50] [abbrv] incubator-mynewt-core git commit: remove hal watchdog stop, as many platforms don't provide the ability to stop a watchdog, so the OS must have intrinisic mechanisms for tickling.

remove hal watchdog stop, as many platforms don't provide the ability to stop a watchdog, so the OS must have intrinisic mechanisms for tickling.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/8371baab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/8371baab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/8371baab

Branch: refs/heads/sterly_refactor
Commit: 8371baab850ff45dbdc873aff4011147848ec106
Parents: 8dffea7
Author: Sterling Hughes <st...@apache.org>
Authored: Wed Sep 21 19:59:14 2016 -0700
Committer: Sterling Hughes <st...@apache.org>
Committed: Wed Sep 21 19:59:14 2016 -0700

----------------------------------------------------------------------
 hw/hal/include/hal/hal_watchdog.h | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/8371baab/hw/hal/include/hal/hal_watchdog.h
----------------------------------------------------------------------
diff --git a/hw/hal/include/hal/hal_watchdog.h b/hw/hal/include/hal/hal_watchdog.h
index 50f6aff..e0161ce 100644
--- a/hw/hal/include/hal/hal_watchdog.h
+++ b/hw/hal/include/hal/hal_watchdog.h
@@ -41,13 +41,6 @@ int hal_watchdog_init(int expire_secs);
 int hal_watchdog_enable(void);
 
 /*
- * Stops the watchdog.
- *
- * @return			0 on success; non-zero on failure.
- */
-int hal_watchdog_stop(void);
-
-/*
  * Tickles the watchdog. Needs to be done before 'expire_secs' fires.
  */
 void hal_watchdog_tickle(void);