diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-31 07:50:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-31 07:50:12 +0000 |
commit | 49b650430eb51350cc96adf7dd621560eb40af04 (patch) | |
tree | a92d6034074c3d710e835d64088beb65c38216e1 /nptl/descr.h | |
parent | 5d4f57bd9398d5b4d0ed26af9d4bf6e65c28c73c (diff) | |
download | glibc-49b650430eb51350cc96adf7dd621560eb40af04.tar glibc-49b650430eb51350cc96adf7dd621560eb40af04.tar.gz glibc-49b650430eb51350cc96adf7dd621560eb40af04.tar.bz2 glibc-49b650430eb51350cc96adf7dd621560eb40af04.zip |
Update.
2003-05-31 Ulrich Drepper <drepper@redhat.com>
* libio/fileops.c (_IO_file_open): Don't mark as inline.
* sysdeps/ia64/elf/initfini.c ((gmon_initializer): Mark with
attribute used.
Diffstat (limited to 'nptl/descr.h')
-rw-r--r-- | nptl/descr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index efb25c7479..6004a26a83 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -77,7 +77,7 @@ struct pthread_unwind_buf struct { /* Pointer to the previous cleanup buffer. */ - __pthread_unwind_buf_t *prev; + struct pthread_unwind_buf *prev; /* Backward compatibility: state of the old-style cleanup handler at the time of the previous new-style cleanup handler @@ -124,7 +124,7 @@ struct pthread struct _pthread_cleanup_buffer *cleanup; /* Unwind information. */ - __pthread_unwind_buf_t *cleanup_jmp_buf; + struct pthread_unwind_buf *cleanup_jmp_buf; #define HAVE_CLEANUP_JMP_BUF /* Flags determining processing of cancellation. */ |