From c238a2189d15121d62faa56982cbf17f22bd5b3e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 31 May 1996 21:40:48 +0000 Subject: added checks to validate values passed to set attribute routines --- c/src/exec/posix/src/mutex.c | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'c/src/exec/posix/src/mutex.c') diff --git a/c/src/exec/posix/src/mutex.c b/c/src/exec/posix/src/mutex.c index 51ac6e097c..a3b81da52d 100644 --- a/c/src/exec/posix/src/mutex.c +++ b/c/src/exec/posix/src/mutex.c @@ -151,8 +151,15 @@ int pthread_mutexattr_setpshared( if ( !attr ) return EINVAL; - attr->process_shared = pshared; - return 0; + switch ( pshared ) { + case PTHREAD_PROCESS_SHARED: + case PTHREAD_PROCESS_PRIVATE: + attr->process_shared = pshared; + return 0; + + default: + return EINVAL; + } } /*PAGE @@ -466,8 +473,16 @@ int pthread_mutexattr_setprotocol( if ( !attr ) return EINVAL; - attr->protocol = protocol; - return 0; + switch ( protocol ) { + case PTHREAD_PRIO_NONE: + case PTHREAD_PRIO_INHERIT: + case PTHREAD_PRIO_PROTECT: + attr->protocol = protocol; + return 0; + + default: + return EINVAL; + } } /*PAGE -- cgit v1.2.3