mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
2000-05-04 Andreas Jaeger <aj@suse.de> * string/string.h: Remove __strdup prototype, it's not needed in this file anymore.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2000-05-04 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* string/string.h: Remove __strdup prototype, it's not needed in
|
||||||
|
this file anymore.
|
||||||
|
|
||||||
2000-05-28 Ulrich Drepper <drepper@redhat.com>
|
2000-05-28 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* posix/Makefile (tests): Add tst-fork.
|
* posix/Makefile (tests): Add tst-fork.
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
2000-05-28 Ulrich Drepper <drepper@redhat.com>
|
2000-05-28 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* spinlock.c (__pthread_lock): Remove ASSERT.
|
||||||
|
|
||||||
* Makefile (tests): Add ex8.
|
* Makefile (tests): Add ex8.
|
||||||
* Examples/ex8.c: New file.
|
* Examples/ex8.c: New file.
|
||||||
|
|
||||||
|
@ -52,7 +52,6 @@ void internal_function __pthread_lock(struct _pthread_fastlock * lock,
|
|||||||
newstatus = (long) self;
|
newstatus = (long) self;
|
||||||
}
|
}
|
||||||
if (self != NULL) {
|
if (self != NULL) {
|
||||||
ASSERT(self->p_nextlock == NULL);
|
|
||||||
THREAD_SETMEM(self, p_nextlock, (pthread_descr) oldstatus);
|
THREAD_SETMEM(self, p_nextlock, (pthread_descr) oldstatus);
|
||||||
/* Make sure the store in p_nextlock completes before performing
|
/* Make sure the store in p_nextlock completes before performing
|
||||||
the compare-and-swap */
|
the compare-and-swap */
|
||||||
|
@ -116,7 +116,6 @@ extern size_t __strxfrm_l (char *__dest, __const char *__src, size_t __n,
|
|||||||
|
|
||||||
#if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
|
#if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
|
||||||
/* Duplicate S, returning an identical malloc'd string. */
|
/* Duplicate S, returning an identical malloc'd string. */
|
||||||
extern char *__strdup (__const char *__s) __THROW __attribute_malloc__;
|
|
||||||
extern char *strdup (__const char *__s) __THROW __attribute_malloc__;
|
extern char *strdup (__const char *__s) __THROW __attribute_malloc__;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user