<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libthread_db/libpthread_db.c, branch release/13.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F13.1.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F13.1.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2017-11-26T02:00:33Z</updated>
<entry>
<title>lib: further adoption of SPDX licensing ID tags.</title>
<updated>2017-11-26T02:00:33Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-11-26T02:00:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5e53a4f90f82c4345f277dd87cc9292f26e04a29'/>
<id>urn:sha1:5e53a4f90f82c4345f277dd87cc9292f26e04a29</id>
<content type='text'>
Mainly focus on files that use BSD 2-Clause license, however the tool I
was using mis-identified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.
</content>
</entry>
<entry>
<title>libthread_db: unbreak build due to sign/unsigned comparison.</title>
<updated>2017-04-20T21:01:59Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-04-20T21:01:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8413ef57988e653dd7731e897dd7295aad9e26c6'/>
<id>urn:sha1:8413ef57988e653dd7731e897dd7295aad9e26c6</id>
<content type='text'>
Reported by:	lwshu
</content>
</entry>
<entry>
<title>libpthread_db: undo the memset size change.</title>
<updated>2017-04-20T17:58:27Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-04-20T17:58:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3876a56282935bde846c2c7642a45e124ce0cb19'/>
<id>urn:sha1:3876a56282935bde846c2c7642a45e124ce0cb19</id>
<content type='text'>
I inadvertedly soubled the size of the memset without noticing the
start address had changed. The size for the memset in pt_map_thread()
shouldn't actually match the reallocarray() so undo that part of r317200.

This is a re-commit of r317201 to clarify the log.

X-MFC with:	r317200
</content>
</entry>
<entry>
<title>Revert r317201 to fix the log.</title>
<updated>2017-04-20T17:54:59Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-04-20T17:54:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=171fcb3069dd866d6942d15b7030cae22e5a814e'/>
<id>urn:sha1:171fcb3069dd866d6942d15b7030cae22e5a814e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libpthread_db: leave the memset size from unchanged.</title>
<updated>2017-04-20T17:49:37Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-04-20T17:49:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=febd54ebb7317f4e0fb6264bd181782129564cd1'/>
<id>urn:sha1:febd54ebb7317f4e0fb6264bd181782129564cd1</id>
<content type='text'>
The size for the memset in pt_map_thread() shouldn't actually match the
reallocarray() so undo that part of r317200.

X-MFC with:	r317200
</content>
</entry>
<entry>
<title>libthread_db: unsign map_len and use reallocarray(3).</title>
<updated>2017-04-20T17:43:25Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-04-20T17:43:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1f2b051d84547c7ee9a163a267a76e3c8ca4a4fe'/>
<id>urn:sha1:1f2b051d84547c7ee9a163a267a76e3c8ca4a4fe</id>
<content type='text'>
Lengths are not negative, so map_len should be unsigned. Unsign the
corresponding indexes too and bring a small use of reallocarray(3).

Reorder the memset to be consistent with the realloc: it appears we
were only clearing half the memory in pt_map_thread().

MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Fix warnings found by -Wmising-variable-declarations.</title>
<updated>2012-10-19T05:43:38Z</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2012-10-19T05:43:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ae824d80f28cd14c0c0ec75076c796e6a369bc18'/>
<id>urn:sha1:ae824d80f28cd14c0c0ec75076c796e6a369bc18</id>
<content type='text'>
This self-written compiler warning, which is hopefully going to be
committed into LLVM sources soon, warns about potentially missing
`static' keywords, similar to -Wmissing-prototypes.

- bin/pax: Move external declaration of chdname and s_mask into extern.h.
- bin/setfacl: Move setfacl.c-specific stuff out of setfacl.h.
- sbin/mount_fusefs: Remove char *progname; use getprogname().
- others: add `static' where possible.
</content>
</entry>
<entry>
<title>Extend the td_thrinfo_t to include siginfo for the signal that stopped</title>
<updated>2010-07-04T12:08:04Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2010-07-04T12:08:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=098d0537f20da8b3ed427bdb2a8ca846c9e53017'/>
<id>urn:sha1:098d0537f20da8b3ed427bdb2a8ca846c9e53017</id>
<content type='text'>
the target. Take care of ABI.

Suggested by:	davidxu
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Allow psaddr_t to be widened by using thr_pread_{int,long,ptr},</title>
<updated>2008-09-14T16:07:21Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2008-09-14T16:07:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=03fad2ad5f6a883d1f63ee7fbd40c9c91fb4d2d6'/>
<id>urn:sha1:03fad2ad5f6a883d1f63ee7fbd40c9c91fb4d2d6</id>
<content type='text'>
where critical. Some places still use ps_pread/ps_pwrite directly,
but only need changed when byte-order comes into the picture.
Also, change th_p in td_event_msg_t from a pointer type to
psaddr_t, so that events also work when psaddr_t is widened.
</content>
</entry>
<entry>
<title>Cleanup for WARNS 6.</title>
<updated>2008-08-06T03:14:18Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2008-08-06T03:14:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f60a5b31c857e1cbcafdb8ffa8b7552b6d64f7ca'/>
<id>urn:sha1:f60a5b31c857e1cbcafdb8ffa8b7552b6d64f7ca</id>
<content type='text'>
</content>
</entry>
</feed>
