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
41cc5174
Commit
41cc5174
authored
Apr 09, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tab fixes (cosmetic)
parent
512766b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
30 deletions
+30
-30
modules/misc/externrun/externrun.c
modules/misc/externrun/externrun.c
+30
-30
No files found.
modules/misc/externrun/externrun.c
View file @
41cc5174
...
@@ -39,9 +39,9 @@
...
@@ -39,9 +39,9 @@
*****************************************************************************/
*****************************************************************************/
struct
run_command_t
struct
run_command_t
{
{
int
i_delay
;
int
i_delay
;
char
*
psz_torun
;
char
*
psz_torun
;
struct
run_command_t
*
p_next
;
struct
run_command_t
*
p_next
;
};
};
typedef
struct
run_command_t
run_command_t
;
typedef
struct
run_command_t
run_command_t
;
...
@@ -50,10 +50,10 @@ typedef struct run_command_t run_command_t;
...
@@ -50,10 +50,10 @@ typedef struct run_command_t run_command_t;
*****************************************************************************/
*****************************************************************************/
struct
intf_sys_t
struct
intf_sys_t
{
{
vlc_mutex_t
change_lock
;
vlc_mutex_t
change_lock
;
mtime_t
next_check
;
mtime_t
next_check
;
run_command_t
*
p_first_command
;
run_command_t
*
p_first_command
;
run_command_t
*
p_last_command
;
run_command_t
*
p_last_command
;
};
};
/*****************************************************************************
/*****************************************************************************
...
@@ -63,7 +63,7 @@ static int Open ( vlc_object_t * );
...
@@ -63,7 +63,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Run
(
intf_thread_t
*
);
static
void
Run
(
intf_thread_t
*
);
static
int
AddRunCommand
(
vlc_object_t
*
,
char
const
*
,
static
int
AddRunCommand
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
vlc_value_t
,
vlc_value_t
,
void
*
);
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -181,29 +181,29 @@ static void Run( intf_thread_t *p_intf )
...
@@ -181,29 +181,29 @@ static void Run( intf_thread_t *p_intf )
msg_Err
(
p_intf
,
"can't run
\"
%s
\"
"
,
p_command
->
psz_torun
);
msg_Err
(
p_intf
,
"can't run
\"
%s
\"
"
,
p_command
->
psz_torun
);
}
}
#else
#else
if
(
fork
()
)
if
(
fork
()
)
{
{
execl
(
p_command
->
psz_torun
,
NULL
,
(
char
*
)
NULL
);
execl
(
p_command
->
psz_torun
,
NULL
,
(
char
*
)
NULL
);
}
}
#endif
#endif
if
(
p_previous
)
if
(
p_previous
)
{
{
p_previous
->
p_next
=
p_command
->
p_next
;
p_previous
->
p_next
=
p_command
->
p_next
;
free
(
p_command
->
psz_torun
);
free
(
p_command
->
psz_torun
);
free
(
p_command
);
free
(
p_command
);
p_command
=
p_previous
->
p_next
;
p_command
=
p_previous
->
p_next
;
}
}
else
else
{
{
p_intf
->
p_sys
->
p_first_command
=
p_command
->
p_next
;
p_intf
->
p_sys
->
p_first_command
=
p_command
->
p_next
;
free
(
p_command
->
psz_torun
);
free
(
p_command
->
psz_torun
);
free
(
p_command
);
free
(
p_command
);
if
(
p_intf
->
p_sys
->
p_last_command
==
p_command
)
if
(
p_intf
->
p_sys
->
p_last_command
==
p_command
)
{
{
p_intf
->
p_sys
->
p_last_command
=
p_command
->
p_next
;
p_intf
->
p_sys
->
p_last_command
=
p_command
->
p_next
;
}
}
p_command
=
p_intf
->
p_sys
->
p_first_command
;
p_command
=
p_intf
->
p_sys
->
p_first_command
;
}
}
}
}
}
}
vlc_mutex_unlock
(
&
p_intf
->
p_sys
->
change_lock
);
vlc_mutex_unlock
(
&
p_intf
->
p_sys
->
change_lock
);
...
...
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