From 46211ef0b82e6db1d62021fadfdd2be8cf78e729 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 22 Sep 2015 02:54:11 +0200 Subject: Avoid exposing function prototype parameter names * include/pthread/pthread.h (pthread_mutex_setprioceiling): Prepend '__' to prio parameter name. --- include/pthread/pthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/pthread/pthread.h') 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 -- cgit v1.2.3