From 4bdde820e3346e542042cb6658eef57383ffd6e1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 7 Sep 2011 15:54:54 -0700 Subject: [PATCH] kernel - Add missing prototype for last commit * Add missing prototype for last commit --- sys/sys/callout.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sys/callout.h b/sys/sys/callout.h index 51137937dd..b279a5fede 100644 --- a/sys/sys/callout.h +++ b/sys/sys/callout.h @@ -69,6 +69,7 @@ struct callout { #define CALLOUT_PENDING 0x0004 /* callout is waiting for timeout */ #define CALLOUT_MPSAFE 0x0008 /* callout does not need the BGL */ #define CALLOUT_DID_INIT 0x0010 /* safety check */ +#define CALLOUT_RUNNING 0x0020 /* function execution in progress */ struct callout_handle { struct callout *callout; @@ -93,6 +94,7 @@ void callout_init (struct callout *); void callout_init_mp (struct callout *); void callout_reset (struct callout *, int, void (*)(void *), void *); int callout_stop (struct callout *); +void callout_terminate (struct callout *); #endif -- 2.41.0