Commit 293b8e90 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

LUA: remove misc.signal() - this API does not make much sense

parent 603cc336
......@@ -185,13 +185,6 @@ static int vlclua_lock_and_wait( lua_State *L )
return 1;
}
static int vlclua_signal( lua_State *L )
{
vlc_object_t *p_this = vlclua_get_this( L );
vlc_object_signal( p_this );
return 0;
}
static int vlclua_mdate( lua_State *L )
{
lua_pushnumber( L, mdate() );
......@@ -231,7 +224,6 @@ static const luaL_Reg vlclua_misc_reg[] = {
{ "mwait", vlclua_mwait },
{ "lock_and_wait", vlclua_lock_and_wait },
{ "signal", vlclua_signal },
{ "should_die", vlclua_intf_should_die },
{ "quit", vlclua_quit },
......
......@@ -101,7 +101,6 @@ misc.mdate(): Get the current date (in milliseconds).
misc.mwait(): Wait for the given date (in milliseconds).
misc.lock_and_wait(): Lock our object thread and wait for a wake up signal.
misc.signal(): Wake up our object thread.
misc.should_die(): Returns true if the interface should quit.
misc.quit(): Quit VLC.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment