<feed xmlns='http://www.w3.org/2005/Atom'>
<title>netbsd/lib/libc/stdlib/reallocarray.c, branch trunk</title>
<subtitle>NetBSD fork for lockdoc analysis</subtitle>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/'/>
<entry>
<title>put reallocarray() in the public namespace</title>
<updated>2022-10-28T09:43:58+00:00</updated>
<author>
<name>wiz</name>
<email>wiz@NetBSD.org</email>
</author>
<published>2022-10-28T09:43:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=ab3fdd40bbfe9c973ebe532869b675339861eb30'/>
<id>ab3fdd40bbfe9c973ebe532869b675339861eb30</id>
<content type='text'>
reallocarray() will be part of the next POSIX release, see
https://austingroupbugs.net/view.php?id=1218

adapt an errno value to match POSIX expectations

As discussed on tech-userlevel</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reallocarray() will be part of the next POSIX release, see
https://austingroupbugs.net/view.php?id=1218

adapt an errno value to match POSIX expectations

As discussed on tech-userlevel</pre>
</div>
</content>
</entry>
<entry>
<title>arrange for tools build</title>
<updated>2021-02-26T19:25:12+00:00</updated>
<author>
<name>christos</name>
<email>christos@NetBSD.org</email>
</author>
<published>2021-02-26T19:25:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=44864673796ab113a22d522d22b2302be847b7a5'/>
<id>44864673796ab113a22d522d22b2302be847b7a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add bunch of missing includes of namespace.h in libc</title>
<updated>2018-01-04T20:57:28+00:00</updated>
<author>
<name>kamil</name>
<email>kamil@NetBSD.org</email>
</author>
<published>2018-01-04T20:57:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=f54fea0f02b59cfd914fa4a8c130aad36f4cfc43'/>
<id>f54fea0f02b59cfd914fa4a8c130aad36f4cfc43</id>
<content type='text'>
The NetBSD Standard C Library uses internally some of its functions with
a mangled symbol name, usually "_symbol". The internal functions shall not
use the global (public) symbols.

This change eliminates usage of the global changes of the following symbols:
 - strlcat -&gt; _strlcat
 - sysconf -&gt; __sysconf
 - closedir -&gt; _closedir
 - fparseln -&gt; _fparseln
 - kill -&gt; _kill
 - mkstemp -&gt; _mkstemp
 - reallocarr -&gt; _reallocarr
 - strcasecmp -&gt; _strcasecmp
 - strncasecmp -&gt; _strncasecmp
 - strptime -&gt; _strptime
 - strtok_r -&gt; _strtok_r
 - sysctl -&gt; _sysctl
 - dlopen -&gt; __dlopen
 - dlclose -&gt; __dlclose
 - dlsym -&gt; __dlsym

Sponsored by &lt;The NetBSD Foundation&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The NetBSD Standard C Library uses internally some of its functions with
a mangled symbol name, usually "_symbol". The internal functions shall not
use the global (public) symbols.

This change eliminates usage of the global changes of the following symbols:
 - strlcat -&gt; _strlcat
 - sysconf -&gt; __sysconf
 - closedir -&gt; _closedir
 - fparseln -&gt; _fparseln
 - kill -&gt; _kill
 - mkstemp -&gt; _mkstemp
 - reallocarr -&gt; _reallocarr
 - strcasecmp -&gt; _strcasecmp
 - strncasecmp -&gt; _strncasecmp
 - strptime -&gt; _strptime
 - strtok_r -&gt; _strtok_r
 - sysctl -&gt; _sysctl
 - dlopen -&gt; __dlopen
 - dlclose -&gt; __dlclose
 - dlsym -&gt; __dlsym

Sponsored by &lt;The NetBSD Foundation&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>remove recallocarray</title>
<updated>2017-10-07T21:15:48+00:00</updated>
<author>
<name>christos</name>
<email>christos@NetBSD.org</email>
</author>
<published>2017-10-07T21:15:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=80ae38f7413340cab3e1c50c14c97e0e27a0504b'/>
<id>80ae38f7413340cab3e1c50c14c97e0e27a0504b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add recallocarray</title>
<updated>2017-10-07T19:38:35+00:00</updated>
<author>
<name>christos</name>
<email>christos@NetBSD.org</email>
</author>
<published>2017-10-07T19:38:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=f3eb942a7596a9357af8f0d224e665b6a1c1e980'/>
<id>f3eb942a7596a9357af8f0d224e665b6a1c1e980</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert prior, no idea why it was causing me problems, but it no longer does.</title>
<updated>2016-04-06T11:07:58+00:00</updated>
<author>
<name>roy</name>
<email>roy@NetBSD.org</email>
</author>
<published>2016-04-06T11:07:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=cb87f6b8b0e579742bf69c63d6021279e328b910'/>
<id>cb87f6b8b0e579742bf69c63d6021279e328b910</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop calling reallocarr and just do the same bounds checking but without</title>
<updated>2016-04-05T15:01:26+00:00</updated>
<author>
<name>roy</name>
<email>roy@NetBSD.org</email>
</author>
<published>2016-04-05T15:01:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=392584b3f0f4922af8d25190d4c243ea7e4e9c7f'/>
<id>392584b3f0f4922af8d25190d4c243ea7e4e9c7f</id>
<content type='text'>
messing around with copying pointers which was causing ssh to crash.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
messing around with copying pointers which was causing ssh to crash.</pre>
</div>
</content>
</entry>
<entry>
<title>reallocarray(3) cleanup</title>
<updated>2015-07-26T02:22:33+00:00</updated>
<author>
<name>kamil</name>
<email>kamil@NetBSD.org</email>
</author>
<published>2015-07-26T02:22:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=2464c4ad4ac8030b0c71132ad4eb922789c8d060'/>
<id>2464c4ad4ac8030b0c71132ad4eb922789c8d060</id>
<content type='text'>
Add missing NetBSD CVS Id
Don't define twice _OPENBSD_SOURCE</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add missing NetBSD CVS Id
Don't define twice _OPENBSD_SOURCE</pre>
</div>
</content>
</entry>
<entry>
<title>Behave in an OpenBSD compatible way for 0.</title>
<updated>2015-03-10T13:05:13+00:00</updated>
<author>
<name>christos</name>
<email>christos@NetBSD.org</email>
</author>
<published>2015-03-10T13:05:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=eef86dfd9b979eabee874595251517afe40b196b'/>
<id>eef86dfd9b979eabee874595251517afe40b196b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use reallocarr()</title>
<updated>2015-02-17T20:44:42+00:00</updated>
<author>
<name>christos</name>
<email>christos@NetBSD.org</email>
</author>
<published>2015-02-17T20:44:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.infra.scholz.ruhr/netbsd/commit/?id=16b31207541b4defe2c5783c8c1fba6d76cfece7'/>
<id>16b31207541b4defe2c5783c8c1fba6d76cfece7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
