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
30c48e10
Commit
30c48e10
authored
Jan 17, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pthread: mark allocation errors as unlikely
parent
49674e45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
src/misc/pthread.c
src/misc/pthread.c
+10
-9
No files found.
src/misc/pthread.c
View file @
30c48e10
...
@@ -143,7 +143,7 @@ void vlc_mutex_init( vlc_mutex_t *p_mutex )
...
@@ -143,7 +143,7 @@ void vlc_mutex_init( vlc_mutex_t *p_mutex )
{
{
pthread_mutexattr_t
attr
;
pthread_mutexattr_t
attr
;
if
(
pthread_mutexattr_init
(
&
attr
)
)
if
(
unlikely
(
pthread_mutexattr_init
(
&
attr
))
)
abort
();
abort
();
#ifdef NDEBUG
#ifdef NDEBUG
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_NORMAL
);
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_NORMAL
);
...
@@ -155,7 +155,7 @@ void vlc_mutex_init( vlc_mutex_t *p_mutex )
...
@@ -155,7 +155,7 @@ void vlc_mutex_init( vlc_mutex_t *p_mutex )
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_ERRORCHECK
);
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_ERRORCHECK
);
# endif
# endif
#endif
#endif
if
(
pthread_mutex_init
(
p_mutex
,
&
attr
)
)
if
(
unlikely
(
pthread_mutex_init
(
p_mutex
,
&
attr
))
)
abort
();
abort
();
pthread_mutexattr_destroy
(
&
attr
);
pthread_mutexattr_destroy
(
&
attr
);
}
}
...
@@ -167,13 +167,14 @@ void vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
...
@@ -167,13 +167,14 @@ void vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
{
{
pthread_mutexattr_t
attr
;
pthread_mutexattr_t
attr
;
pthread_mutexattr_init
(
&
attr
);
if
(
unlikely
(
pthread_mutexattr_init
(
&
attr
)))
abort
();
#if defined (__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ < 6)
#if defined (__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ < 6)
pthread_mutexattr_setkind_np
(
&
attr
,
PTHREAD_MUTEX_RECURSIVE_NP
);
pthread_mutexattr_setkind_np
(
&
attr
,
PTHREAD_MUTEX_RECURSIVE_NP
);
#else
#else
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_RECURSIVE
);
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_RECURSIVE
);
#endif
#endif
if
(
pthread_mutex_init
(
p_mutex
,
&
attr
)
)
if
(
unlikely
(
pthread_mutex_init
(
p_mutex
,
&
attr
))
)
abort
();
abort
();
pthread_mutexattr_destroy
(
&
attr
);
pthread_mutexattr_destroy
(
&
attr
);
}
}
...
@@ -262,7 +263,7 @@ void vlc_cond_init( vlc_cond_t *p_condvar )
...
@@ -262,7 +263,7 @@ void vlc_cond_init( vlc_cond_t *p_condvar )
{
{
pthread_condattr_t
attr
;
pthread_condattr_t
attr
;
if
(
pthread_condattr_init
(
&
attr
))
if
(
unlikely
(
pthread_condattr_init
(
&
attr
)
))
abort
();
abort
();
#if !defined (_POSIX_CLOCK_SELECTION)
#if !defined (_POSIX_CLOCK_SELECTION)
/* Fairly outdated POSIX support (that was defined in 2001) */
/* Fairly outdated POSIX support (that was defined in 2001) */
...
@@ -273,7 +274,7 @@ void vlc_cond_init( vlc_cond_t *p_condvar )
...
@@ -273,7 +274,7 @@ void vlc_cond_init( vlc_cond_t *p_condvar )
pthread_condattr_setclock
(
&
attr
,
CLOCK_MONOTONIC
);
pthread_condattr_setclock
(
&
attr
,
CLOCK_MONOTONIC
);
#endif
#endif
if
(
pthread_cond_init
(
p_condvar
,
&
attr
))
if
(
unlikely
(
pthread_cond_init
(
p_condvar
,
&
attr
)
))
abort
();
abort
();
pthread_condattr_destroy
(
&
attr
);
pthread_condattr_destroy
(
&
attr
);
}
}
...
@@ -386,7 +387,7 @@ int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex,
...
@@ -386,7 +387,7 @@ int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex,
*/
*/
void
vlc_sem_init
(
vlc_sem_t
*
sem
,
unsigned
value
)
void
vlc_sem_init
(
vlc_sem_t
*
sem
,
unsigned
value
)
{
{
if
(
sem_init
(
sem
,
0
,
value
))
if
(
unlikely
(
sem_init
(
sem
,
0
,
value
)
))
abort
();
abort
();
}
}
...
@@ -428,7 +429,7 @@ void vlc_sem_wait (vlc_sem_t *sem)
...
@@ -428,7 +429,7 @@ void vlc_sem_wait (vlc_sem_t *sem)
*/
*/
void
vlc_rwlock_init
(
vlc_rwlock_t
*
lock
)
void
vlc_rwlock_init
(
vlc_rwlock_t
*
lock
)
{
{
if
(
pthread_rwlock_init
(
lock
,
NULL
))
if
(
unlikely
(
pthread_rwlock_init
(
lock
,
NULL
)
))
abort
();
abort
();
}
}
...
@@ -801,7 +802,7 @@ int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
...
@@ -801,7 +802,7 @@ int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
{
{
struct
vlc_timer
*
timer
=
malloc
(
sizeof
(
*
timer
));
struct
vlc_timer
*
timer
=
malloc
(
sizeof
(
*
timer
));
if
(
timer
==
NULL
)
if
(
unlikely
(
timer
==
NULL
)
)
return
ENOMEM
;
return
ENOMEM
;
vlc_mutex_init
(
&
timer
->
lock
);
vlc_mutex_init
(
&
timer
->
lock
);
vlc_cond_init
(
&
timer
->
wait
);
vlc_cond_init
(
&
timer
->
wait
);
...
...
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