aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/luaproc/luaproc.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-05 17:36:10 +1000
committerDavid Walter Seikel2012-02-05 17:36:10 +1000
commit9ba142106365d4bfb7fff266bcc98801651e502e (patch)
treec2d519278819abcd2bb5ec4455dca2c0e0acb2d6 /libraries/luaproc/luaproc.h
parentMove the heavy lifting part of luaproc message sending to it's own function. (diff)
downloadSledjHamr-9ba142106365d4bfb7fff266bcc98801651e502e.zip
SledjHamr-9ba142106365d4bfb7fff266bcc98801651e502e.tar.gz
SledjHamr-9ba142106365d4bfb7fff266bcc98801651e502e.tar.bz2
SledjHamr-9ba142106365d4bfb7fff266bcc98801651e502e.tar.xz
White space fixes.
Diffstat (limited to '')
-rw-r--r--libraries/luaproc/luaproc.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/libraries/luaproc/luaproc.h b/libraries/luaproc/luaproc.h
index d700e86..2f3ed3f 100644
--- a/libraries/luaproc/luaproc.h
+++ b/libraries/luaproc/luaproc.h
@@ -71,16 +71,15 @@ luaproc luaproc_create_sched( char *code );
71void luaproc_register_funcs( lua_State *L ); 71void luaproc_register_funcs( lua_State *L );
72 72
73/* allow registering of luaproc's functions in c main prog */ 73/* allow registering of luaproc's functions in c main prog */
74void luaproc_register_lib( lua_State *L ); 74void luaproc_register_lib( lua_State *L );
75 75
76/* queue a luaproc that tried to send a message */ 76/* queue a luaproc that tried to send a message */
77void luaproc_queue_sender( luaproc lp ); 77void luaproc_queue_sender( luaproc lp );
78
79 78
80const char *sendToChannel(const char *chname, const char *message); 79const char *sendToChannel(const char *chname, const char *message);
81 80
82/* queue a luaproc that tried to receive a message */ 81/* queue a luaproc that tried to receive a message */
83void luaproc_queue_receiver( luaproc lp ); 82void luaproc_queue_receiver( luaproc lp );
84 83
85/* unlock a channel's access */ 84/* unlock a channel's access */
86void luaproc_unlock_channel( channel chan ); 85void luaproc_unlock_channel( channel chan );