mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
1999-08-06 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/bits/socket.h: Fix typo (MSG_TRUNC -> MSG_DONTWAIT).
This commit is contained in:
parent
f341c297f6
commit
7aa6d20822
@ -1,3 +1,8 @@
|
|||||||
|
1999-08-06 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/bits/socket.h: Fix typo (MSG_TRUNC ->
|
||||||
|
MSG_DONTWAIT).
|
||||||
|
|
||||||
1999-08-06 H.J. Lu <hjl@gnu.org>
|
1999-08-06 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
* malloc/malloc.c: Initialize __libc_pagesize early.
|
* malloc/malloc.c: Initialize __libc_pagesize early.
|
||||||
|
@ -1672,7 +1672,6 @@ ptmalloc_init __MALLOC_P((void))
|
|||||||
tsd_key_create(&arena_key, NULL);
|
tsd_key_create(&arena_key, NULL);
|
||||||
tsd_setspecific(arena_key, (Void_t *)&main_arena);
|
tsd_setspecific(arena_key, (Void_t *)&main_arena);
|
||||||
thread_atfork(ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_init_all);
|
thread_atfork(ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_init_all);
|
||||||
#else /* !defined NO_THREADS */
|
|
||||||
#endif /* !defined NO_THREADS */
|
#endif /* !defined NO_THREADS */
|
||||||
#if defined _LIBC || defined MALLOC_HOOKS
|
#if defined _LIBC || defined MALLOC_HOOKS
|
||||||
if((s = getenv("MALLOC_TRIM_THRESHOLD_")))
|
if((s = getenv("MALLOC_TRIM_THRESHOLD_")))
|
||||||
|
@ -179,7 +179,7 @@ enum
|
|||||||
MSG_TRUNC = 0x20,
|
MSG_TRUNC = 0x20,
|
||||||
#define MSG_TRUNC MSG_TRUNC
|
#define MSG_TRUNC MSG_TRUNC
|
||||||
MSG_DONTWAIT = 0x40, /* Nonblocking IO. */
|
MSG_DONTWAIT = 0x40, /* Nonblocking IO. */
|
||||||
#define MSG_DONTWAIT MSG_TRUNC
|
#define MSG_DONTWAIT MSG_DONTWAIT
|
||||||
MSG_EOR = 0x80, /* End of record. */
|
MSG_EOR = 0x80, /* End of record. */
|
||||||
#define MSG_EOR MSG_EOR
|
#define MSG_EOR MSG_EOR
|
||||||
MSG_WAITALL = 0x100, /* Wait for a full request. */
|
MSG_WAITALL = 0x100, /* Wait for a full request. */
|
||||||
|
Loading…
Reference in New Issue
Block a user