mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* sysdeps/gnu/bits/utmp.h (struct exit_status): Define members * sysdeps/gnu/bits/utmpx.h (struct __exit_status): Likewise.
This commit is contained in:
@ -1,12 +1,8 @@
|
|||||||
1998-12-05 Ulrich Drepper <drepper@cygnus.com>
|
1998-12-05 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/gnu/bits/utmp.h: Rename struct exit_status to
|
* sysdeps/gnu/bits/utmp.h (struct exit_status): Define members
|
||||||
__exit_status.
|
|
||||||
(struct __exit_status): Define members without leading __ only for
|
|
||||||
__USE_GNU.
|
|
||||||
|
|
||||||
* sysdeps/gnu/bits/utmpx.h (struct __exit_status): Define members
|
|
||||||
without leading __ only for __USE_GNU.
|
without leading __ only for __USE_GNU.
|
||||||
|
* sysdeps/gnu/bits/utmpx.h (struct __exit_status): Likewise.
|
||||||
|
|
||||||
1998-12-04 Ulrich Drepper <drepper@cygnus.com>
|
1998-12-04 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
8
PROJECTS
8
PROJECTS
@ -40,7 +40,7 @@ contact <bug-glibc@gnu.org>.
|
|||||||
[ 6] Write `long double' versions of the math functions. This should be
|
[ 6] Write `long double' versions of the math functions. This should be
|
||||||
done in collaboration with the NetBSD and FreeBSD people.
|
done in collaboration with the NetBSD and FreeBSD people.
|
||||||
|
|
||||||
The libm is in fact fdlibm (not the same as in Linux libc).
|
The libm is in fact fdlibm (not the same as in Linux libc 5).
|
||||||
|
|
||||||
**** Partly done. But we need someone with numerical experiences for
|
**** Partly done. But we need someone with numerical experiences for
|
||||||
the rest.
|
the rest.
|
||||||
@ -192,3 +192,9 @@ contact <bug-glibc@gnu.org>.
|
|||||||
Factors should be number of uses (of course), influenced by aging.
|
Factors should be number of uses (of course), influenced by aging.
|
||||||
Just imagine a computer used by several people. The IDs of the current
|
Just imagine a computer used by several people. The IDs of the current
|
||||||
user should be preferred even if the last user spent more time.
|
user should be preferred even if the last user spent more time.
|
||||||
|
|
||||||
|
|
||||||
|
[26] Improve the AIO implementation so that threads do not immediately
|
||||||
|
terminate if no more requests are available. Let them sleep for a
|
||||||
|
while and wake them up on demand. If after a while no request arrived
|
||||||
|
they really can die.
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef _UTMP_H
|
#ifndef _UTMP_H
|
||||||
# error "Never include <bits/utmp.h> directly; use <utmpx.h> instead."
|
# error "Never include <bits/utmp.h> directly; use <utmp.h> instead."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <paths.h>
|
#include <paths.h>
|
||||||
@ -42,7 +42,7 @@ struct lastlog
|
|||||||
|
|
||||||
/* The structure describing the status of a terminated process. This
|
/* The structure describing the status of a terminated process. This
|
||||||
type is used in `struct utmp' below. */
|
type is used in `struct utmp' below. */
|
||||||
struct __exit_status
|
struct exit_status
|
||||||
{
|
{
|
||||||
#ifdef __USE_GNU
|
#ifdef __USE_GNU
|
||||||
short int e_termination; /* Process termination status. */
|
short int e_termination; /* Process termination status. */
|
||||||
|
Reference in New Issue
Block a user