summaryrefslogtreecommitdiff
path: root/src/l_sig_handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/l_sig_handler.c')
-rw-r--r--src/l_sig_handler.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/l_sig_handler.c b/src/l_sig_handler.c
index 01e9662..35d8c14 100644
--- a/src/l_sig_handler.c
+++ b/src/l_sig_handler.c
@@ -1,15 +1,15 @@
/*
* gcsd
*
- * gcsd the generic command sequencer daemon can be used to serialize
+ * gcsd the generic command sequencer daemon can be used to serialize
* commands sent over various paralell communication channels to a
* single command output. It can be seen as a multiplexer for any
* kind of communication between a single resource and various clients
* which want to submit commands to it or query information from it.
- * gcsd is written in C and Lua. The goal is to provide an easy to
+ * gcsd is written in C and Lua. The goal is to provide an easy to
* understand high level API based on Lua which can be used to
* implement the business logic of the so formed multiplexer daemon.
- *
+ *
*
* Copyright (C) 2009-2010 Markus Grueneis <gimpf@spreadspace.org>
* Christian Pointner <equinox@spreadspace.org>
@@ -64,14 +64,14 @@ static int l_signal_handle(lua_State *L)
}
static const struct luaL_reg signal_funcs [] = {
- { "init", l_signal_init },
- { "stop", l_signal_stop },
+ { "init", l_signal_init },
+ { "stop", l_signal_stop },
{ "handle", l_signal_handle },
{ NULL, NULL }
};
-LUALIB_API int luaopen_signal(lua_State *L)
+LUALIB_API int luaopen_signal(lua_State *L)
{
luaL_register(L, LUA_SIGNALLIBNAME, signal_funcs);
return 1;