* [PATCH] bugzilla_218018_v1
@ 2023-12-29 3:18 Rajesh Pandian
2023-12-29 13:14 ` Stefan Puiu
0 siblings, 1 reply; 4+ messages in thread
From: Rajesh Pandian @ 2023-12-29 3:18 UTC (permalink / raw)
To: alx; +Cc: linux-man, schwindl, Rajesh Pandian
---
man3/dl_iterate_phdr.3 | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/man3/dl_iterate_phdr.3 b/man3/dl_iterate_phdr.3
index 0a8beb3ae..1355c5bcc 100644
--- a/man3/dl_iterate_phdr.3
+++ b/man3/dl_iterate_phdr.3
@@ -129,7 +129,9 @@ The
.I dlpi_phnum
field indicates the size of this array.
.P
-These program headers are structures of the following form:
+The ELF program header is described by the type Elf32_Phdr
+or Elf64_Phdr depending on the architecture.
+The following is an example of the 32-bit architecture:
.P
.in +4n
.EX
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] bugzilla_218018_v1
2023-12-29 3:18 [PATCH] bugzilla_218018_v1 Rajesh Pandian
@ 2023-12-29 13:14 ` Stefan Puiu
2023-12-29 14:55 ` rajesh
2024-01-01 12:03 ` Alejandro Colomar
0 siblings, 2 replies; 4+ messages in thread
From: Stefan Puiu @ 2023-12-29 13:14 UTC (permalink / raw)
To: Rajesh Pandian; +Cc: alx, linux-man, schwindl
Hi Rajesh,
2 small nits below.
On Fri, Dec 29, 2023 at 5:19 AM Rajesh Pandian <r.pandian@gmail.com> wrote:
>
> ---
> man3/dl_iterate_phdr.3 | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/man3/dl_iterate_phdr.3 b/man3/dl_iterate_phdr.3
> index 0a8beb3ae..1355c5bcc 100644
> --- a/man3/dl_iterate_phdr.3
> +++ b/man3/dl_iterate_phdr.3
> @@ -129,7 +129,9 @@ The
> .I dlpi_phnum
> field indicates the size of this array.
> .P
> -These program headers are structures of the following form:
> +The ELF program header is described by the type Elf32_Phdr
> +or Elf64_Phdr depending on the architecture.
I think "is described by the Elf32_Phdr or Elf64_Phdr type,
depending..." sounds better here.
> +The following is an example of the 32-bit architecture:
How about "The following layout applies to 32-bit architectures:"?
Thanks,
Stefan.
> .P
> .in +4n
> .EX
> --
> 2.39.2
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] bugzilla_218018_v1
2023-12-29 13:14 ` Stefan Puiu
@ 2023-12-29 14:55 ` rajesh
2024-01-01 12:03 ` Alejandro Colomar
1 sibling, 0 replies; 4+ messages in thread
From: rajesh @ 2023-12-29 14:55 UTC (permalink / raw)
To: Stefan Puiu; +Cc: alx, linux-man, schwindl
Thanks for the feedback. Sounds good. I'll send a patch later.
On Fri, 29 Dec 2023 at 18:44, Stefan Puiu <stefan.puiu@gmail.com> wrote:
>
> Hi Rajesh,
>
> 2 small nits below.
>
> On Fri, Dec 29, 2023 at 5:19 AM Rajesh Pandian <r.pandian@gmail.com> wrote:
> >
> > ---
> > man3/dl_iterate_phdr.3 | 4 +++-
> > 1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/man3/dl_iterate_phdr.3 b/man3/dl_iterate_phdr.3
> > index 0a8beb3ae..1355c5bcc 100644
> > --- a/man3/dl_iterate_phdr.3
> > +++ b/man3/dl_iterate_phdr.3
> > @@ -129,7 +129,9 @@ The
> > .I dlpi_phnum
> > field indicates the size of this array.
> > .P
> > -These program headers are structures of the following form:
> > +The ELF program header is described by the type Elf32_Phdr
> > +or Elf64_Phdr depending on the architecture.
>
> I think "is described by the Elf32_Phdr or Elf64_Phdr type,
> depending..." sounds better here.
>
> > +The following is an example of the 32-bit architecture:
>
> How about "The following layout applies to 32-bit architectures:"?
>
> Thanks,
> Stefan.
>
> > .P
> > .in +4n
> > .EX
> > --
> > 2.39.2
> >
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] bugzilla_218018_v1
2023-12-29 13:14 ` Stefan Puiu
2023-12-29 14:55 ` rajesh
@ 2024-01-01 12:03 ` Alejandro Colomar
1 sibling, 0 replies; 4+ messages in thread
From: Alejandro Colomar @ 2024-01-01 12:03 UTC (permalink / raw)
To: Stefan Puiu; +Cc: Rajesh Pandian, linux-man, schwindl
[-- Attachment #1: Type: text/plain, Size: 454 bytes --]
Hi Stefan,
On Fri, Dec 29, 2023 at 03:14:15PM +0200, Stefan Puiu wrote:
> I think "is described by the Elf32_Phdr or Elf64_Phdr type,
> depending..." sounds better here.
+1
> > +The following is an example of the 32-bit architecture:
>
> How about "The following layout applies to 32-bit architectures:"?
+1
Have a lovely year,
Alex
--
<https://www.alejandro-colomar.es/>
Looking for a remote C programming job at the moment.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-01 12:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-29 3:18 [PATCH] bugzilla_218018_v1 Rajesh Pandian
2023-12-29 13:14 ` Stefan Puiu
2023-12-29 14:55 ` rajesh
2024-01-01 12:03 ` Alejandro Colomar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox