Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
1cfa8770
Commit
1cfa8770
authored
Sep 03, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pull cancellation into (most) remaining interfaces
parent
67c077de
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
85 additions
and
50 deletions
+85
-50
modules/access/vcdx/intf.c
modules/access/vcdx/intf.c
+3
-0
modules/codec/cmml/intf.c
modules/codec/cmml/intf.c
+2
-0
modules/control/dbus.c
modules/control/dbus.c
+3
-1
modules/control/gestures.c
modules/control/gestures.c
+2
-0
modules/control/hotkeys.c
modules/control/hotkeys.c
+2
-0
modules/control/lirc.c
modules/control/lirc.c
+5
-1
modules/control/motion.c
modules/control/motion.c
+15
-16
modules/control/netsync.c
modules/control/netsync.c
+2
-0
modules/control/ntservice.c
modules/control/ntservice.c
+2
-0
modules/control/rc.c
modules/control/rc.c
+6
-4
modules/control/showintf.c
modules/control/showintf.c
+2
-0
modules/gui/fbosd.c
modules/gui/fbosd.c
+2
-0
modules/gui/ncurses.c
modules/gui/ncurses.c
+2
-0
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+2
-0
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+4
-0
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+2
-0
modules/gui/wince/wince.cpp
modules/gui/wince/wince.cpp
+2
-0
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+2
-0
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+7
-7
modules/misc/inhibit.c
modules/misc/inhibit.c
+2
-6
modules/misc/logger.c
modules/misc/logger.c
+4
-1
modules/misc/lua/intf.c
modules/misc/lua/intf.c
+2
-3
modules/misc/notify/xosd.c
modules/misc/notify/xosd.c
+3
-1
modules/misc/probe/hal.c
modules/misc/probe/hal.c
+2
-0
modules/misc/screensaver.c
modules/misc/screensaver.c
+5
-10
No files found.
modules/access/vcdx/intf.c
View file @
1cfa8770
...
...
@@ -105,6 +105,7 @@ RunIntf( intf_thread_t *p_intf )
the 10_ADD keypresses */
int
number_addend
=
0
;
int
canc
=
vlc_savecancel
();
if
(
InitThread
(
p_intf
)
<
0
)
{
msg_Err
(
p_intf
,
"can't initialize intf"
);
...
...
@@ -121,6 +122,7 @@ RunIntf( intf_thread_t *p_intf )
p_vcdplayer
=
p_intf
->
p_sys
->
p_vcdplayer
;
p_access
=
p_vcdplayer
->
p_access
;
int
canc
=
vlc_savecancel
();
dbg_print
(
INPUT_DBG_CALL
,
"intf initialized"
);
/* Main loop */
...
...
@@ -309,6 +311,7 @@ RunIntf( intf_thread_t *p_intf )
}
vlc_object_release
(
p_intf
->
p_sys
->
p_input
);
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/codec/cmml/intf.c
View file @
1cfa8770
...
...
@@ -177,6 +177,7 @@ void CloseIntf ( vlc_object_t *p_this )
*****************************************************************************/
static
void
RunIntf
(
intf_thread_t
*
p_intf
)
{
int
canc
=
vlc_savecancel
();
vout_thread_t
*
p_vout
=
NULL
;
if
(
InitThread
(
p_intf
)
<
0
)
...
...
@@ -250,6 +251,7 @@ static void RunIntf( intf_thread_t *p_intf )
}
vlc_object_release
(
p_intf
->
p_sys
->
p_input
);
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/control/dbus.c
View file @
1cfa8770
...
...
@@ -826,10 +826,12 @@ static void Close ( vlc_object_t *p_this )
static
void
Run
(
intf_thread_t
*
p_intf
)
{
while
(
!
intf_ShouldDie
(
p_intf
)
)
for
(
;;
)
{
msleep
(
INTF_IDLE_SLEEP
);
int
canc
=
vlc_savecancel
();
dbus_connection_read_write_dispatch
(
p_intf
->
p_sys
->
p_conn
,
0
);
vlc_restorecancel
(
canc
);
}
}
...
...
modules/control/gestures.c
View file @
1cfa8770
...
...
@@ -168,6 +168,7 @@ void Close ( vlc_object_t *p_this )
static
void
RunIntf
(
intf_thread_t
*
p_intf
)
{
playlist_t
*
p_playlist
=
NULL
;
int
canc
=
vlc_savecancel
();
vlc_mutex_lock
(
&
p_intf
->
change_lock
);
p_intf
->
p_sys
->
p_vout
=
NULL
;
...
...
@@ -450,6 +451,7 @@ static void RunIntf( intf_thread_t *p_intf )
}
EndThread
(
p_intf
);
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/control/hotkeys.c
View file @
1cfa8770
...
...
@@ -139,6 +139,7 @@ static void Run( intf_thread_t *p_intf )
vlc_value_t
val
;
int
i
;
playlist_t
*
p_playlist
=
pl_Yield
(
p_intf
);
int
canc
=
vlc_savecancel
();
/* Initialize hotkey structure */
for
(
struct
hotkey
*
p_hotkey
=
p_intf
->
p_libvlc
->
p_hotkeys
;
...
...
@@ -830,6 +831,7 @@ static void Run( intf_thread_t *p_intf )
vlc_object_release
(
p_input
);
}
pl_Release
(
p_intf
);
vlc_restorecancel
(
canc
);
}
static
int
GetAction
(
intf_thread_t
*
p_intf
)
...
...
modules/control/lirc.c
View file @
1cfa8770
...
...
@@ -138,11 +138,14 @@ static void Close( vlc_object_t *p_this )
static
void
Run
(
intf_thread_t
*
p_intf
)
{
char
*
code
,
*
c
;
int
canc
=
vlc_savecancel
();
while
(
!
intf_ShouldDie
(
p_intf
)
)
for
(
;;
)
{
/* Sleep a bit */
vlc_restorecancel
(
canc
);
msleep
(
INTF_IDLE_SLEEP
);
canc
=
vlc_savecancel
();
/* We poll the lircsocket */
if
(
lirc_nextcode
(
&
code
)
!=
0
)
...
...
@@ -199,4 +202,5 @@ static void Run( intf_thread_t *p_intf )
}
free
(
code
);
}
vlc_restorecancel
(
canc
);
}
modules/control/motion.c
View file @
1cfa8770
...
...
@@ -182,7 +182,7 @@ static void RunIntf( intf_thread_t *p_intf )
int
p_oldx
[
FILTER_LENGTH
];
memset
(
p_oldx
,
0
,
FILTER_LENGTH
*
sizeof
(
int
)
);
while
(
!
intf_ShouldDie
(
p_intf
)
)
for
(
;;
)
{
vout_thread_t
*
p_vout
;
const
char
*
psz_filter
,
*
psz_type
;
...
...
@@ -191,6 +191,7 @@ static void RunIntf( intf_thread_t *p_intf )
/* Wait a bit, get orientation, change filter if necessary */
msleep
(
INTF_IDLE_SLEEP
);
int
canc
=
vlc_savecancel
();
i_x
=
GetOrientation
(
p_intf
);
i_sum
+=
i_x
-
p_oldx
[
i
];
p_oldx
[
i
++
]
=
i_x
;
...
...
@@ -212,7 +213,7 @@ static void RunIntf( intf_thread_t *p_intf )
vlc_object_release
(
p_obj
);
}
}
continue
;
goto
loop
;
}
if
(
i_x
<
-
HIGH_THRESHOLD
&&
i_oldx
>
-
LOW_THRESHOLD
)
...
...
@@ -235,23 +236,21 @@ static void RunIntf( intf_thread_t *p_intf )
psz_type
=
"90"
;
}
if
(
!
b_change
)
if
(
b_change
)
{
continue
;
}
p_vout
=
(
vout_thread_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
if
(
p_vout
)
{
config_PutPsz
(
p_vout
,
"transform-type"
,
psz_type
);
var_SetString
(
p_vout
,
"vout-filter"
,
psz_filter
);
vlc_object_release
(
p_vout
);
p_vout
=
(
vout_thread_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
if
(
!
p_vout
)
{
continue
;
i_oldx
=
i_x
;
}
}
config_PutPsz
(
p_vout
,
"transform-type"
,
psz_type
);
var_SetString
(
p_vout
,
"vout-filter"
,
psz_filter
);
vlc_object_release
(
p_vout
);
i_oldx
=
i_x
;
loop:
vlc_restorecancel
(
canc
);
}
}
#undef FILTER_LENGTH
...
...
modules/control/netsync.c
View file @
1cfa8770
...
...
@@ -143,6 +143,7 @@ static void Run( intf_thread_t *p_intf )
char
*
psz_master
=
NULL
;
char
p_data
[
MAX_MSG_LENGTH
];
int
i_socket
;
int
canc
=
vlc_savecancel
();
if
(
!
b_master
)
{
...
...
@@ -312,6 +313,7 @@ static void Run( intf_thread_t *p_intf )
if
(
p_intf
->
p_sys
->
p_input
)
vlc_object_release
(
p_intf
->
p_sys
->
p_input
);
net_Close
(
i_socket
);
vlc_restorecancel
(
canc
);
}
static
mtime_t
GetClockRef
(
intf_thread_t
*
p_intf
,
mtime_t
i_pts
)
...
...
modules/control/ntservice.c
View file @
1cfa8770
...
...
@@ -134,6 +134,7 @@ static void Run( intf_thread_t *p_intf )
{
NULL
,
NULL
}
};
int
canc
=
vlc_savecancel
();
p_global_intf
=
p_intf
;
p_intf
->
p_sys
=
&
sys
;
p_intf
->
p_sys
->
psz_service
=
config_GetPsz
(
p_intf
,
"ntservice-name"
);
...
...
@@ -170,6 +171,7 @@ static void Run( intf_thread_t *p_intf )
/* Make sure we exit (In case other interfaces have been spawned) */
vlc_object_kill
(
p_intf
->
p_libvlc
);
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/control/rc.c
View file @
1cfa8770
...
...
@@ -449,13 +449,14 @@ static void Run( intf_thread_t *p_intf )
input_thread_t
*
p_input
;
playlist_t
*
p_playlist
;
char
p_buffer
[
MAX_LINE_LENGTH
+
1
];
char
p_buffer
[
MAX_LINE_LENGTH
+
1
];
bool
b_showpos
=
config_GetInt
(
p_intf
,
"rc-show-pos"
);
bool
b_longhelp
=
false
;
int
i_size
=
0
;
int
i_oldpos
=
0
;
int
i_newpos
;
int
i_size
=
0
;
int
i_oldpos
=
0
;
int
i_newpos
;
int
canc
=
vlc_savecancel
();
p_buffer
[
0
]
=
0
;
p_input
=
NULL
;
...
...
@@ -846,6 +847,7 @@ static void Run( intf_thread_t *p_intf )
}
var_DelCallback
(
p_intf
->
p_libvlc
,
"volume-change"
,
VolumeChanged
,
p_intf
);
vlc_restorecancel
(
canc
);
}
static
void
Help
(
intf_thread_t
*
p_intf
,
bool
b_longhelp
)
...
...
modules/control/showintf.c
View file @
1cfa8770
...
...
@@ -111,6 +111,7 @@ void Close( vlc_object_t *p_this )
*****************************************************************************/
static
void
RunIntf
(
intf_thread_t
*
p_intf
)
{
int
canc
=
vlc_savecancel
(
);
p_intf
->
p_sys
->
p_vout
=
NULL
;
if
(
InitThread
(
p_intf
)
<
0
)
...
...
@@ -170,6 +171,7 @@ static void RunIntf( intf_thread_t *p_intf )
MouseEvent
,
p_intf
);
vlc_object_release
(
p_intf
->
p_sys
->
p_vout
);
}
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/gui/fbosd.c
View file @
1cfa8770
...
...
@@ -1270,6 +1270,7 @@ static bool isRendererReady( intf_thread_t *p_intf )
static
void
Run
(
intf_thread_t
*
p_intf
)
{
intf_sys_t
*
p_sys
=
(
intf_sys_t
*
)
p_intf
->
p_sys
;
int
canc
=
vlc_savecancel
();
while
(
!
intf_ShouldDie
(
p_intf
)
)
{
...
...
@@ -1322,6 +1323,7 @@ static void Run( intf_thread_t *p_intf )
}
End
(
p_intf
);
vlc_restorecancel
(
canc
);
}
static
int
OverlayCallback
(
vlc_object_t
*
p_this
,
char
const
*
psz_cmd
,
...
...
modules/gui/ncurses.c
View file @
1cfa8770
...
...
@@ -390,6 +390,7 @@ static void Run( intf_thread_t *p_intf )
int
i_key
;
time_t
t_last_refresh
;
int
canc
=
vlc_savecancel
();
/*
* force drawing the interface for the first time
...
...
@@ -464,6 +465,7 @@ static void Run( intf_thread_t *p_intf )
var_DelCallback
(
p_playlist
,
"intf-change"
,
PlaylistChanged
,
p_intf
);
var_DelCallback
(
p_playlist
,
"item-append"
,
PlaylistChanged
,
p_intf
);
var_DelCallback
(
p_playlist
,
"item-change"
,
PlaylistChanged
,
p_intf
);
vlc_restorecancel
(
canc
);
}
/* following functions are local */
...
...
modules/gui/pda/pda.c
View file @
1cfa8770
...
...
@@ -156,6 +156,7 @@ static void Run( intf_thread_t *p_intf )
GtkTreeViewColumn
*
p_column
=
NULL
;
GtkListStore
*
p_filelist
=
NULL
;
GtkListStore
*
p_playlist_store
=
NULL
;
int
canc
=
vlc_savecancel
();
#ifndef NEED_GTK2_MAIN
gtk_set_locale
();
...
...
@@ -348,6 +349,7 @@ static void Run( intf_thread_t *p_intf )
#ifdef NEED_GTK2_MAIN
gdk_threads_leave
();
#endif
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/gui/qt4/qt4.cpp
View file @
1cfa8770
...
...
@@ -298,7 +298,11 @@ static void Run( intf_thread_t *p_intf )
msg_Err
(
p_intf
,
"failed to create Qt dialogs thread"
);
}
else
{
int
canc
=
vlc_savecancel
();
Init
(
VLC_OBJECT
(
p_intf
)
);
vlc_restorecancel
(
canc
);
}
}
static
QMutex
windowLock
;
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
1cfa8770
...
...
@@ -195,6 +195,7 @@ static void Close( vlc_object_t *p_this )
//---------------------------------------------------------------------------
static
void
Run
(
intf_thread_t
*
p_intf
)
{
int
canc
=
vlc_savecancel
();
// Load a theme
ThemeLoader
*
pLoader
=
new
ThemeLoader
(
p_intf
);
char
*
skin_last
=
config_GetPsz
(
p_intf
,
"skins2-last"
);
...
...
@@ -253,6 +254,7 @@ static void Run( intf_thread_t *p_intf )
delete
p_intf
->
p_sys
->
p_theme
;
p_intf
->
p_sys
->
p_theme
=
NULL
;
}
vlc_restorecancel
(
canc
);
}
...
...
modules/gui/wince/wince.cpp
View file @
1cfa8770
...
...
@@ -203,8 +203,10 @@ static void Run( intf_thread_t *p_intf )
}
else
{
int
canc
=
vlc_savecancel
();
/* The module is used in interface mode */
MainLoop
(
p_intf
);
vlc_restorecancel
(
canc
);
}
}
...
...
modules/gui/wxwidgets/wxwidgets.cpp
View file @
1cfa8770
...
...
@@ -287,8 +287,10 @@ static void Run( intf_thread_t *p_intf )
}
else
{
int
canc
=
vlc_savecancel
();
/* The module is used in interface mode */
Init
(
p_intf
);
vlc_restorecancel
(
canc
);
}
}
...
...
modules/misc/audioscrobbler.c
View file @
1cfa8770
...
...
@@ -254,6 +254,7 @@ static void Run( intf_thread_t *p_intf )
uint8_t
p_buffer
[
1024
];
char
*
p_buffer_pos
;
int
i_post_socket
;
int
canc
=
vlc_savecancel
();
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
...
...
@@ -262,13 +263,10 @@ static void Run( intf_thread_t *p_intf )
{
bool
b_wait
=
false
;
vlc_restorecancel
(
canc
);
vlc_object_lock
(
p_intf
);
if
(
!
vlc_object_alive
(
p_intf
)
)
{
vlc_object_unlock
(
p_intf
);
msg_Dbg
(
p_intf
,
"audioscrobbler is dying"
);
return
;
}
vlc_cleanup_push
(
__vlc_object_unlock
,
p_intf
);
if
(
mdate
()
<
p_sys
->
next_exchange
)
/* wait until we can resubmit, i.e. */
b_wait
=
vlc_object_timedwait
(
p_intf
,
p_sys
->
next_exchange
)
==
0
;
...
...
@@ -276,7 +274,8 @@ static void Run( intf_thread_t *p_intf )
/* wait for data to submit */
/* we are signaled each time there is a song to submit */
vlc_object_wait
(
p_intf
);
vlc_object_unlock
(
p_intf
);
vlc_cleanup_run
();
canc
=
vlc_savecancel
();
if
(
b_wait
)
continue
;
/* holding on until next_exchange */
...
...
@@ -456,6 +455,7 @@ static void Run( intf_thread_t *p_intf )
continue
;
}
}
vlc_restorecancel
(
canc
);
}
/*****************************************************************************
...
...
modules/misc/inhibit.c
View file @
1cfa8770
...
...
@@ -219,13 +219,12 @@ static int UnInhibit( intf_thread_t *p_intf )
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
vlc_object_lock
(
p_intf
);
while
(
vlc_object_alive
(
p_intf
)
)
for
(
;;
)
{
input_thread_t
*
p_input
;
/* Check playing state every 30 seconds */
vlc_object_timedwait
(
p_intf
,
mdate
()
+
30000000
);
msleep
(
30
*
CLOCK_FREQ
);
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
p_input
)
...
...
@@ -250,7 +249,4 @@ static void Run( intf_thread_t *p_intf )
break
;
}
}
end:
vlc_object_unlock
(
p_intf
);
}
modules/misc/logger.c
View file @
1cfa8770
...
...
@@ -321,14 +321,17 @@ static void Close( vlc_object_t *p_this )
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
while
(
vlc_object_alive
(
p_intf
)
)
for
(
;;
)
{
int
canc
=
vlc_savecancel
();
FlushQueue
(
p_intf
->
p_sys
->
p_sub
,
p_intf
->
p_sys
->
p_file
,
p_intf
->
p_sys
->
i_mode
,
var_CreateGetInteger
(
p_intf
,
"verbose"
)
);
if
(
p_intf
->
p_sys
->
p_rrd
)
DoRRD
(
p_intf
);
vlc_restorecancel
(
canc
);
/* FIXME: this is WRONG. */
msleep
(
INTF_IDLE_SLEEP
);
}
}
...
...
modules/misc/lua/intf.c
View file @
1cfa8770
...
...
@@ -281,6 +281,7 @@ void Close_LuaIntf( vlc_object_t *p_this )
static
void
Run
(
intf_thread_t
*
p_intf
)
{
int
canc
=
vlc_savecancel
(
);
lua_State
*
L
=
p_intf
->
p_sys
->
L
;
if
(
luaL_dofile
(
L
,
p_intf
->
p_sys
->
psz_filename
)
)
...
...
@@ -289,8 +290,6 @@ static void Run( intf_thread_t *p_intf )
p_intf
->
p_sys
->
psz_filename
,
lua_tostring
(
L
,
lua_gettop
(
L
)
)
);
lua_pop
(
L
,
1
);
p_intf
->
b_die
=
true
;
return
;
}
p_intf
->
b_die
=
true
;
vlc_restorecancel
(
canc
)
;
}
modules/misc/notify/xosd.c
View file @
1cfa8770
...
...
@@ -219,8 +219,9 @@ static void Run( intf_thread_t *p_intf )
char
psz_duration
[
MSTRTIME_MAX_SIZE
+
2
];
char
*
psz_display
=
NULL
;
while
(
vlc_object_alive
(
p_intf
)
)
for
(
;;
)
{
int
canc
=
vlc_savecancel
();
if
(
p_intf
->
p_sys
->
b_need_update
==
true
)
{
p_intf
->
p_sys
->
b_need_update
=
false
;
...
...
@@ -278,6 +279,7 @@ static void Run( intf_thread_t *p_intf )
psz_display
);
}
vlc_restorecancel
(
canc
);
msleep
(
INTF_IDLE_SLEEP
);
}
}
...
...
modules/misc/probe/hal.c
View file @
1cfa8770
...
...
@@ -130,6 +130,7 @@ static void Update( device_probe_t * p_probe )
int
i
,
i_devices
,
j
;
char
**
devices
;
bool
b_exists
;
int
canc
=
vlc_savecancel
();
for
(
j
=
0
;
j
<
p_sys
->
i_devices
;
j
++
)
p_sys
->
pp_devices
[
j
]
->
b_seen
=
false
;
...
...
@@ -160,6 +161,7 @@ static void Update( device_probe_t * p_probe )
}
}
/// \todo Remove unseen devices
vlc_restorecancel
(
canc
);
}
...
...
modules/misc/screensaver.c
View file @
1cfa8770
...
...
@@ -166,20 +166,15 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args )
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
mtime_t
deadline
=
mdate
();
vlc_object_lock
(
p_intf
);
int
canc
=
vlc_savecancel
();
#ifdef HAVE_DBUS
p_intf
->
p_sys
->
p_connection
=
dbus_init
(
p_intf
);
#endif
while
(
vlc_object_alive
(
p_intf
)
)
{
for
(
;;
)
{
vlc_object_t
*
p_vout
;
if
(
vlc_object_timedwait
(
p_intf
,
deadline
)
==
0
)
continue
;
p_vout
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
/* If there is a video output, disable xscreensaver */
...
...
@@ -213,10 +208,10 @@ static void Run( intf_thread_t *p_intf )
}
}
vlc_restorecancel
(
canc
);
/* Check screensaver every 30 seconds */
deadline
=
mdate
()
+
30000000
;
msleep
(
30
*
CLOCK_FREQ
)
;
}
vlc_object_unlock
(
p_intf
);
}
#ifdef HAVE_DBUS
...
...
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