diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-20 00:34:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-20 00:34:21 +0000 |
commit | d2dfc5de011fb525161b85a1408f716a2ea358cc (patch) | |
tree | 22804aa59f348ac9d5bf432d2ddeb4c79ad31910 /linuxthreads/sysdeps/pthread/timer_getoverr.c | |
parent | d620426811688301eb1cbe6e63773d6430b2706e (diff) | |
download | glibc-d2dfc5de011fb525161b85a1408f716a2ea358cc.tar glibc-d2dfc5de011fb525161b85a1408f716a2ea358cc.tar.gz glibc-d2dfc5de011fb525161b85a1408f716a2ea358cc.tar.bz2 glibc-d2dfc5de011fb525161b85a1408f716a2ea358cc.zip |
Update.
* iconv/gconv_int.h (strict gconv_module): Remove all members
associated with regular expressions. Use a simple string as the
from name.
* iconv/gconv_db.c: Remove code handling regular expressions.
* iconv/gconv_conf.c: Likewise.
* iconv/iconv_prog.c: Likewise.
* iconv/gconv_builtin.h: Adjust for change in gconv_conf.c.
Diffstat (limited to 'linuxthreads/sysdeps/pthread/timer_getoverr.c')
-rw-r--r-- | linuxthreads/sysdeps/pthread/timer_getoverr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/pthread/timer_getoverr.c b/linuxthreads/sysdeps/pthread/timer_getoverr.c index 8630f57829..520458c712 100644 --- a/linuxthreads/sysdeps/pthread/timer_getoverr.c +++ b/linuxthreads/sysdeps/pthread/timer_getoverr.c @@ -34,8 +34,8 @@ timer_getoverrun (timerid) pthread_mutex_lock (&__timer_mutex); - if ((timer = timer_id2ptr (timerid)) == NULL || !timer->inuse) - errno = EINVAL; + if (! timer_valid (timer = timer_id2ptr (timerid))) + __set_errno (EINVAL); else retval = 0; /* TODO: overrun counting not supported */ |