History log of /freebsd-9.3-release/usr.sbin/kldxref/ef_obj.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 267654 19-Jun-2014 gjb

Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 252044 20-Jun-2013 delphij

MFC r251440: use calloc().


# 252043 20-Jun-2013 delphij

MFC r251439: Remove unneeded reference to link.h (sys/link_elf.h).


# 225736 22-Sep-2011 kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by: re (implicit)


# 186826 06-Jan-2009 luigi

fix a couple of innocuous compiler warnings

MFC after: 3 days


# 154251 12-Jan-2006 jasone

Use posix_memalign() rather than assuming that malloc() provides adequate
alignment.

Approved by: markm (mentor)


# 153504 18-Dec-2005 marcel

Make our ELF64 type definitions match standards. In particular this
means:
o Remove Elf64_Quarter,
o Redefine Elf64_Half to be 16-bit,
o Redefine Elf64_Word to be 32-bit,
o Add Elf64_Xword and Elf64_Sxword for 64-bit entities,
o Use Elf_Size in MI code to abstract the difference between
Elf32_Word and Elf64_Word.
o Add Elf_Ssize as the signed counterpart of Elf_Size.

MFC after: 2 weeks


# 134450 28-Aug-2004 iedowse

Explicitly pass in the relocation base and data offset into ef_reloc()
rather than relying on a trick that happens to work for the current
relocation schemes. Also add some comments and improve variable
naming.


# 134373 27-Aug-2004 iedowse

Use a temporary void * variable to work around a strict aliasing
warning that gcc generates at -O2 and higher.


# 134361 26-Aug-2004 iedowse

Add support for reading ELF relocatable object file format modules.