From 409a1aeacde083bd0abbc713ba8496d405a22ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sat, 3 Aug 2002 01:58:14 +0000 Subject: [PATCH] Added some comments git-svn-id: file:///srv/svn/repos/haiku/trunk/current@559 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/elf32.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/headers/private/kernel/elf32.h b/headers/private/kernel/elf32.h index 9f55aadb5a..ae38814f3c 100755 --- a/headers/private/kernel/elf32.h +++ b/headers/private/kernel/elf32.h @@ -80,11 +80,11 @@ struct Elf32_Shdr { struct Elf32_Phdr { Elf32_Word p_type; - Elf32_Off p_offset; - Elf32_Addr p_vaddr; + Elf32_Off p_offset; /* offset from the beginning of the file of the segment */ + Elf32_Addr p_vaddr; /* virtual address for the segment in memory */ Elf32_Addr p_paddr; - Elf32_Word p_filesz; - Elf32_Word p_memsz; + Elf32_Word p_filesz; /* the size of the segment in the file */ + Elf32_Word p_memsz; /* the size of the segment in memory */ Elf32_Word p_flags; Elf32_Word p_align; } ;