A.out: Difference between revisions

208 bytes added ,  29 days ago
m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
(I extended this article with the description of relocation info structure. I also made some minor changes.)
m (Bot: Replace deprecated source tag with syntaxhighlight)
 
(4 intermediate revisions by one other user not shown)
Line 36:
 
32 bit executable header:
<sourcesyntaxhighlight lang="c">
struct exec
{
Line 50:
 
};
</syntaxhighlight>
</source>
The fields have the following functions:
{| class="wikitable"
Line 101:
===The relocation info structure===
Relocation records have a standard format which is described by the relocation_info structure:
<sourcesyntaxhighlight lang="c">
struct relocation_info
{
Line 117:
 
};
</syntaxhighlight>
</source>
The fields have the following functions:
{| class="wikitable"
Line 163:
 
==See Also==
*[https://web.archive.org/web/20120301032406/http://www.nondot.org/sabre/os/files/Executables/OpenBSD-a.out.txt OSRC #1]
*[https://web.archive.org/web/20120301023848/http://www.nondot.org/sabre/os/files/Executables/a.out.txt OSRC #2]
*[https://wwwman.freebsdopenbsd.org/cgi/manOpenBSD-5.cgi?query=4/a.out&apropos=0&sektion=0&manpath=NetBSD+1.4&format=html5 NetBSDOpenBSD-5.4 man page on a.out]
*[https://www.freebsd.org/cgi/man.cgi?query=a.out FreeBSD man page on a.out]
*[https://man.netbsd.org/a.out.5 NetBSD man page on a.out]
 
[[Category:Executable Formats]]