diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-04 09:52:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-04 09:52:26 +0000 |
commit | 7a5cdb30e31c860ce0314393cc97f161258ff842 (patch) | |
tree | 6cfdb5a8975258ad34e08210a8e7a979e5a2a980 /nptl/allocatestack.c | |
parent | d16055ee52814feb37f273bc5239d66324a931e9 (diff) | |
download | glibc-7a5cdb30e31c860ce0314393cc97f161258ff842.tar.gz glibc-7a5cdb30e31c860ce0314393cc97f161258ff842.tar.xz glibc-7a5cdb30e31c860ce0314393cc97f161258ff842.zip |
Update.
2002-12-04 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Mark asms as volatile and add memory clobbers to lock operations.
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 9f12f2b940..00ce920f8a 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -105,7 +105,7 @@ get_cached_stack (size_t *sizep, void **memp) { struct pthread *curr; - curr = list_entry(entry, struct pthread, header.data.list); + curr = list_entry (entry, struct pthread, header.data.list); if (FREE_P (curr) && curr->stackblock_size >= size) { if (curr->stackblock_size == size) |