mirror of git://sourceware.org/git/glibc.git
*** empty log message ***
* sysdeps/mach/hurd/setitimer.c (setitimer_locked): Correct spelling error of _hurd_itimerval.
This commit is contained in:
parent
bfb826224b
commit
747e2b4361
|
|
@ -1,5 +1,8 @@
|
||||||
Thu Aug 29 12:00:30 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
|
Thu Aug 29 12:00:30 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* sysdeps/mach/hurd/setitimer.c (setitimer_locked): Correct
|
||||||
|
spelling error of _hurd_itimerval.
|
||||||
|
|
||||||
* mach/Makefile (MIGFLAGS-mach/mach4): Define variable.
|
* mach/Makefile (MIGFLAGS-mach/mach4): Define variable.
|
||||||
mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and
|
mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and
|
||||||
$(MIGFLAGS-$*) here too, as well as in the code-generating MiG calls.
|
$(MIGFLAGS-$*) here too, as well as in the code-generating MiG calls.
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ DEFUN(fseek, (stream, offset, whence),
|
||||||
return EOF;
|
return EOF;
|
||||||
|
|
||||||
/* Make sure we know the current offset info. */
|
/* Make sure we know the current offset info. */
|
||||||
stream.__offset = -1;
|
stream->__offset = -1;
|
||||||
if (__stdio_check_offset (stream) == EOF)
|
if (__stdio_check_offset (stream) == EOF)
|
||||||
return EOF;
|
return EOF;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -159,7 +159,7 @@ setitimer_locked (const struct itimerval *new, struct itimerval *old,
|
||||||
/* Just return the current value in OLD without changing anything.
|
/* Just return the current value in OLD without changing anything.
|
||||||
This is what BSD does, even though it's not documented. */
|
This is what BSD does, even though it's not documented. */
|
||||||
if (old)
|
if (old)
|
||||||
*old = _hurd_itemerval;
|
*old = _hurd_itimerval;
|
||||||
spin_unlock (&_hurd_itimer_lock);
|
spin_unlock (&_hurd_itimer_lock);
|
||||||
_hurd_critical_section_unlock (crit);
|
_hurd_critical_section_unlock (crit);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue