diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-22 02:54:11 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-22 02:54:11 +0200 |
commit | 46211ef0b82e6db1d62021fadfdd2be8cf78e729 (patch) | |
tree | 5a50a75b9258f0bd42aaa184c37e4781f1718f68 | |
parent | 02ca56841e7fc3d016b948b29421619408a18227 (diff) |
Avoid exposing function prototype parameter names
* include/pthread/pthread.h (pthread_mutex_setprioceiling): Prepend '__'
to prio parameter name.
-rw-r--r-- | include/pthread/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pthread/pthread.h b/include/pthread/pthread.h index f0229b1..8bc20f5 100644 --- a/include/pthread/pthread.h +++ b/include/pthread/pthread.h @@ -358,7 +358,7 @@ extern int pthread_mutex_getprioceiling (const pthread_mutex_t *__restrict __mut and return the old priority ceiling in *OLDPRIO. Before returning, release the mutex. */ extern int pthread_mutex_setprioceiling (pthread_mutex_t *__restrict __mutex, - int prio, int *__restrict __oldprio); + int __prio, int *__restrict __oldprio); #endif |