Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
293b8e90
Commit
293b8e90
authored
Jan 05, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LUA: remove misc.signal() - this API does not make much sense
parent
603cc336
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
modules/misc/lua/libs/misc.c
modules/misc/lua/libs/misc.c
+0
-8
share/lua/README.txt
share/lua/README.txt
+0
-1
No files found.
modules/misc/lua/libs/misc.c
View file @
293b8e90
...
...
@@ -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
},
...
...
share/lua/README.txt
View file @
293b8e90
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment