From: Andre Noll <maan@systemlinux.org>
Date: Sun, 9 Sep 2007 11:15:52 +0000 (+0200)
Subject: afs.c: Kill unused struct callback_data.
X-Git-Tag: v0.3.0~442
X-Git-Url: https://git.tuebingen.mpg.de/?a=commitdiff_plain;h=aea0aba712b2170e2d39ffa1c8f8cb55fc0881bf;p=paraslash.git

afs.c: Kill unused struct callback_data.
---

diff --git a/afs.c b/afs.c
index e3844e38..c726f35f 100644
--- a/afs.c
+++ b/afs.c
@@ -75,23 +75,6 @@ struct command_task {
  */
 extern uint32_t afs_socket_cookie;
 
-struct callback_data {
-	/** The function to be called. */
-	callback_function *handler;
-	/** The sma for the parameters of the callback function. */
-	int query_shmid;
-	/** The size of the query sma. */
-	size_t query_size;
-	/** If the callback produced a result, it is stored in this sma. */
-	int result_shmid;
-	/** The size of the result sma. */
-	size_t result_size;
-	/** The return value of the callback function. */
-	int callback_ret;
-	/** The return value of the callback() procedure. */
-	int sma_ret;
-};
-
 /**
  * Struct to let command handlers execute a callback in afs context.
  *