diff options
| author | bje <bje> | 1998-07-23 14:22:01 +0000 | 
|---|---|---|
| committer | bje <bje> | 1998-07-23 14:22:01 +0000 | 
| commit | d0c8ee6a9ee8d7faef6cf9353c1244b9906cd743 (patch) | |
| tree | 56a5480316e4edddfeef023dab33ca1aaaad2517 | |
| parent | ec424d6656acd54af051c2a73dce348671135b35 (diff) | |
1998-07-24  Ben Elliston  <bje@cygnus.com>
	* mutex.c (pthread_mutexattr_setprotocol): Remove; not supported.
	(pthread_mutexattr_getprotocol): Likewise.
	(pthread_mutexattr_setprioceiling): Likewise.
	(pthread_mutexattr_getprioceiling): Likewise.
| -rw-r--r-- | mutex.c | 32 | 
1 files changed, 0 insertions, 32 deletions
| @@ -70,38 +70,6 @@ pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr,  }  int -pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, -			      int protocol) -{ -  /* This function is not supported. */ -  return ENOSYS; -} - -int -pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr, -			     int *protocol) -{ -  /* This function is not supported. */ -  return ENOSYS; -} - -int -pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr, -				 int ceiling) -{ -  /* This function is not supported. */ -  return ENOSYS; -} - -int -pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *attr, -				 int *ceiling) -{ -  /* This function is not supported. */ -  return ENOSYS; -} - -int  pthread_mutex_lock(pthread_mutex_t *mutex)  {    EnterCriticalSection(mutex); | 
