<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/gnu/usr.bin/binutils/gdb, branch release/5.2.1</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F5.2.1</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F5.2.1'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2003-12-07T04:02:46Z</updated>
<entry>
<title>Switch to a label that is appropriate for the release.</title>
<updated>2003-12-07T04:02:46Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-12-07T04:02:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3cfe1020d88566eb1bee013e047283c25684a3ae'/>
<id>urn:sha1:3cfe1020d88566eb1bee013e047283c25684a3ae</id>
<content type='text'>
Submitted by:	obrien
</content>
</entry>
<entry>
<title>FBSDID style nit.</title>
<updated>2003-11-12T08:33:18Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-11-12T08:33:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=febc611cfaeb2b83e45612b3e9180dea54878af5'/>
<id>urn:sha1:febc611cfaeb2b83e45612b3e9180dea54878af5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement gdb_solib_create_inferior_hook().</title>
<updated>2003-10-29T14:40:59Z</updated>
<author>
<name>Hidetoshi Shimokawa</name>
<email>simokawa@FreeBSD.org</email>
</author>
<published>2003-10-29T14:40:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3c0173a6666abfe554dc054d41ef90b6608ba3d4'/>
<id>urn:sha1:3c0173a6666abfe554dc054d41ef90b6608ba3d4</id>
<content type='text'>
This function is used for autoloading kld module symbols for remote kgdb.
We still need a patch(*) for src/contrib/gdb/gdb/solib-svr4.c to enable
this function.

(*) http://people.freebsd.org/~simokawa/gdb/patch-solib-svr4.c
</content>
</entry>
<entry>
<title>Enable '--interpreter=mi' support.</title>
<updated>2003-09-07T20:38:23Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-09-07T20:38:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5abd21e1e66e2f3ff01aea76dbe3801f95d9ad4a'/>
<id>urn:sha1:5abd21e1e66e2f3ff01aea76dbe3801f95d9ad4a</id>
<content type='text'>
Submitted by:	Rui Lopes &lt;rui@ruilopes.com&gt;
</content>
</entry>
<entry>
<title>s/x86-64/amd64/</title>
<updated>2003-09-07T20:21:14Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-09-07T20:21:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f230755006fe3c8a260c2a04a5aeeac83682471b'/>
<id>urn:sha1:f230755006fe3c8a260c2a04a5aeeac83682471b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>style.Makefile(5)</title>
<updated>2003-09-07T20:19:32Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-09-07T20:19:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c234256ec508c14e1eb802ff10625fa8e0f95071'/>
<id>urn:sha1:c234256ec508c14e1eb802ff10625fa8e0f95071</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Attempt to automatically read in kernel module symbols when a live</title>
<updated>2003-03-21T00:30:53Z</updated>
<author>
<name>Ian Dowse</name>
<email>iedowse@FreeBSD.org</email>
</author>
<published>2003-03-21T00:30:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ea0d04f36e776ba238362e6ec616b21e5bdeaa7c'/>
<id>urn:sha1:ea0d04f36e776ba238362e6ec616b21e5bdeaa7c</id>
<content type='text'>
or dead kernel core is loaded into gdb. This extends gdb's existing
shared library support, so the "info sharedlibrary", "sharedlibrary"
and "nosharedlibrary" commands can be used to view and change the
list of loaded symbol files.

The current implementation is more than a kludge however, and it
will not always manage to find the .ko.debug file corresponding to
the loaded module. In particular, for modules whose build directory
cannot be easily guessed from the module name such as all the
netgraph modules, the debug version of the .ko will not be found
automatically.

The logic for finding the module file first attempts to guess at
the module build directory by parsing the version[] string. Then
using that directory ($DIR), it tries the following paths in turn:

	./&lt;module&gt;.ko.debug		./&lt;module&gt;.ko
	$DIR/&lt;module&gt;.ko.debug		$DIR/&lt;module&gt;.ko
	/boot/kernel/&lt;module&gt;.ko.debug	/boot/kernel/&lt;module&gt;.ko

Approved by:	obrien, mp
</content>
</entry>
<entry>
<title>Reformat.</title>
<updated>2003-01-04T17:51:59Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-01-04T17:51:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ceb0f624bc7711428844f551956dbfe7a713c874'/>
<id>urn:sha1:ceb0f624bc7711428844f551956dbfe7a713c874</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add the ability to debug C++ programs using v2 and v3 of the G++ ABI.</title>
<updated>2003-01-04T17:51:48Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-01-04T17:51:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bff2d4022e2724b7e45967f1c189c9ce3800f4b4'/>
<id>urn:sha1:bff2d4022e2724b7e45967f1c189c9ce3800f4b4</id>
<content type='text'>
Submitted by:	Peter Edwards &lt;pmedwards@eircom.net&gt;
</content>
</entry>
<entry>
<title>GC 'char sigmap[]' (it is no longer used)</title>
<updated>2003-01-04T17:35:54Z</updated>
<author>
<name>Max Khon</name>
<email>fjoe@FreeBSD.org</email>
</author>
<published>2003-01-04T17:35:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6fd1035190cbe004bc3e47cd6f6120e765a68622'/>
<id>urn:sha1:6fd1035190cbe004bc3e47cd6f6120e765a68622</id>
<content type='text'>
Approved by:	obrien
MFC after:	3 days
</content>
</entry>
</feed>
