aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc.c')
-rw-r--r--src/ipc.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ipc.c b/src/ipc.c
index 328580b..93839b6 100644
--- a/src/ipc.c
+++ b/src/ipc.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.11 2008/03/07 14:13:40 james
+ * *** empty log message ***
+ *
* Revision 1.10 2008/03/07 13:16:02 james
* *** empty log message ***
*
@@ -266,3 +269,12 @@ ipc_msg_send_reset (Socket * s)
return ipc_msg_send (s, (IPC_Msg *) & m);
}
+int
+ipc_msg_send_killme (Socket * s)
+{
+ IPC_Msg_killme m;
+
+ m.size = sizeof (m);
+ m.type = IPC_MSG_TYPE_KILLME;
+ return ipc_msg_send (s, (IPC_Msg *) & m);
+}