aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/core.h
diff options
context:
space:
mode:
authorYing Xue <ying.xue@windriver.com>2014-05-04 20:56:18 -0400
committerDavid S. Miller <davem@davemloft.net>2014-05-05 17:26:45 -0400
commit52ff872055e06af10f94b8853c946f07ed8a0672 (patch)
treef8a32816ff224eddbc8a8b18e5b83cdf8b5b5f81 /net/tipc/core.h
parent3f5a12bd9f9a61d8a12f9adf778b14e4bb8ca050 (diff)
tipc: purge signal handler infrastructure
In the previous commits of this series, we removed all asynchronous actions which were based on the tasklet handler - "tipc_k_signal()". So the moment has now come when we can completely remove the tasklet handler infrastructure. That is done with this commit. Signed-off-by: Ying Xue <ying.xue@windriver.com> Reviewed-by: Erik Hugne <erik.hugne@ericsson.com> Reviewed-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/core.h')
-rw-r--r--net/tipc/core.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/tipc/core.h b/net/tipc/core.h
index 36cbf158845f..ae55d37267e6 100644
--- a/net/tipc/core.h
+++ b/net/tipc/core.h
@@ -89,8 +89,6 @@ extern int tipc_random __read_mostly;
89/* 89/*
90 * Routines available to privileged subsystems 90 * Routines available to privileged subsystems
91 */ 91 */
92int tipc_handler_start(void);
93void tipc_handler_stop(void);
94int tipc_netlink_start(void); 92int tipc_netlink_start(void);
95void tipc_netlink_stop(void); 93void tipc_netlink_stop(void);
96int tipc_socket_init(void); 94int tipc_socket_init(void);
@@ -109,12 +107,10 @@ void tipc_unregister_sysctl(void);
109#endif 107#endif
110 108
111/* 109/*
112 * TIPC timer and signal code 110 * TIPC timer code
113 */ 111 */
114typedef void (*Handler) (unsigned long); 112typedef void (*Handler) (unsigned long);
115 113
116u32 tipc_k_signal(Handler routine, unsigned long argument);
117
118/** 114/**
119 * k_init_timer - initialize a timer 115 * k_init_timer - initialize a timer
120 * @timer: pointer to timer structure 116 * @timer: pointer to timer structure