revert erroneous checkin

This commit is contained in:
Christopher Faylor 2005-06-30 02:51:31 +00:00
parent 87e8bd37a0
commit d573a471af

View File

@ -1771,8 +1771,7 @@ semaphore::_timedwait (const struct timespec *abstime)
struct timeval tv; struct timeval tv;
long waitlength; long waitlength;
myfault efault; if (__check_invalid_read_ptr (abstime, sizeof *abstime))
if (efault.faulted ())
{ {
/* According to SUSv3, abstime need not be checked for validity, /* According to SUSv3, abstime need not be checked for validity,
if the semaphore can be locked immediately. */ if the semaphore can be locked immediately. */
@ -3234,8 +3233,9 @@ semaphore::post (sem_t *sem)
int int
semaphore::getvalue (sem_t *sem, int *sval) semaphore::getvalue (sem_t *sem, int *sval)
{ {
myfault efault;
if (efault.faulted () || !is_good_object (sem)) if (!is_good_object (sem)
|| __check_null_invalid_struct (sval, sizeof (int)))
{ {
set_errno (EINVAL); set_errno (EINVAL);
return -1; return -1;