Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
8a500492
Commit
8a500492
authored
Apr 29, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some unused configure checks
parent
f4a87317
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
11 deletions
+1
-11
configure.ac
configure.ac
+1
-1
src/misc/threads.c
src/misc/threads.c
+0
-10
No files found.
configure.ac
View file @
8a500492
...
...
@@ -404,7 +404,7 @@ CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcd
dnl Check for system libs needed
need_libc=false
AC_CHECK_FUNCS(gettimeofday s
elect strerror s
trtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat)
AC_CHECK_FUNCS(gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat)
dnl Check for usual libc functions
AC_CHECK_FUNCS(strdup strndup atof)
...
...
src/misc/threads.c
View file @
8a500492
...
...
@@ -632,13 +632,8 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
}
else
{
#ifdef HAVE_STRERROR
msg_Err
(
p_this
,
"%s thread could not be created at %s:%d (%s)"
,
psz_name
,
psz_file
,
i_line
,
strerror
(
i_ret
)
);
#else
msg_Err
(
p_this
,
"%s thread could not be created at %s:%d"
,
psz_name
,
psz_file
,
i_line
);
#endif
vlc_mutex_unlock
(
&
p_this
->
object_lock
);
}
...
...
@@ -782,14 +777,9 @@ void __vlc_thread_join( vlc_object_t *p_this, char * psz_file, int i_line )
if
(
i_ret
)
{
#ifdef HAVE_STRERROR
msg_Err
(
p_this
,
"thread_join(%u) failed at %s:%d (%s)"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_file
,
i_line
,
strerror
(
i_ret
)
);
#else
msg_Err
(
p_this
,
"thread_join(%u) failed at %s:%d"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_file
,
i_line
);
#endif
}
else
{
...
...
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