Message ID | 411f9884-66ba-1d66-da9b-7c626262a37b@googlemail.com |
---|---|
State | New |
Headers | show |
Series | Typos is dl_find_object manual | expand |
* Bert Wesarg: > you proposed to use `dl_find_object` in libunwind [1], in which I replied to you that there is a typo in the manual. Its only two lines so hopefully it does not need paperwork. So here it is: > > Author: Bert Wesarg <bert.wesarg@googlemail.com> > Date: Tue Jul 11 18:57:01 2023 +0200 > > doc: Fix typos in `struct dl_find_object` > Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com> Thank you for finding us on libc-alpha. The patch was garbled, so I fixed it and reposted it: <https://sourceware.org/pipermail/libc-alpha/2023-July/150040.html> Would you please double-check it looks okay? Thanks, Florian
diff --git a/manual/dynlink.texi b/manual/dynlink.texi index 6a4a50d3f0..45bf5a5b55 100644 manual/dynlink.texi --- a/manual/dynlink.texi +++ b/manual/dynlink.texi @@ -119,10 +119,10 @@ necessarily page-aligned. @item void *dlfo_map_end The end address of the mapping. -@item struct link_map *dlf_link_map +@item struct link_map *dlfo_link_map This member contains a pointer to the link map of the object. -@item struct link_map *dlf_link_map +@item void *dlfo_eh_frame This member contains a pointer to the exception handling data of the object. See @code{DLFO_EH_SEGMENT_TYPE} below.
Dear Florian, you proposed to use `dl_find_object` in libunwind [1], in which I replied to you that there is a typo in the manual. Its only two lines so hopefully it does not need paperwork. So here it is: Author: Bert Wesarg <bert.wesarg@googlemail.com> Date: Tue Jul 11 18:57:01 2023 +0200 doc: Fix typos in `struct dl_find_object` Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com> Best Bert [1] https://github.com/libunwind/libunwind/pull/490#issuecomment-1517031613