<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wireguard-openbsd/include/stddef.h, branch jd/queueboosts</title>
<subtitle>WireGuard implementation for the OpenBSD kernel</subtitle>
<id>https://git.zx2c4.com/wireguard-openbsd/atom/include/stddef.h?h=jd%2Fqueueboosts</id>
<link rel='self' href='https://git.zx2c4.com/wireguard-openbsd/atom/include/stddef.h?h=jd%2Fqueueboosts'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/'/>
<updated>2017-01-06T14:36:50Z</updated>
<entry>
<title>Add max_align_t.</title>
<updated>2017-01-06T14:36:50Z</updated>
<author>
<name>kettenis</name>
<email>kettenis@openbsd.org</email>
</author>
<published>2017-01-06T14:36:50Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=c9b8f0a24da6d4b249fcafbbc6a920bf0d985179'/>
<id>urn:sha1:c9b8f0a24da6d4b249fcafbbc6a920bf0d985179</id>
<content type='text'>
ok millert@
</content>
</entry>
<entry>
<title>Move the 10 (!) defintions of NULL to their own mini header file and</title>
<updated>2016-09-09T18:12:37Z</updated>
<author>
<name>millert</name>
<email>millert@openbsd.org</email>
</author>
<published>2016-09-09T18:12:37Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=6ecde746dea9a5d17abf3bafa06c232b9189b33b'/>
<id>urn:sha1:6ecde746dea9a5d17abf3bafa06c232b9189b33b</id>
<content type='text'>
update the NULL definition for C++11.  OK deraadt@ guenther@ kettenis@
</content>
</entry>
<entry>
<title>As pointed out by Richard Guenther our definition</title>
<updated>2011-07-03T18:51:01Z</updated>
<author>
<name>jsg</name>
<email>jsg@openbsd.org</email>
</author>
<published>2011-07-03T18:51:01Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=c4ff7bee639643ef725c8a40babe8ec8b7971541'/>
<id>urn:sha1:c4ff7bee639643ef725c8a40babe8ec8b7971541</id>
<content type='text'>
of NULL was incorrect for c++ compilers that aren't
gcc (or pretend to be gcc like clang).

ok miod@
</content>
</entry>
<entry>
<title>Define NULL as a void * instead of a long integer, as required by Single Unix.</title>
<updated>2011-04-06T11:39:42Z</updated>
<author>
<name>miod</name>
<email>miod@openbsd.org</email>
</author>
<published>2011-04-06T11:39:42Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=0c2a5da7f05365c149e31167afeb0bdaec9adde8'/>
<id>urn:sha1:0c2a5da7f05365c149e31167afeb0bdaec9adde8</id>
<content type='text'>
Kernel and bootblocks still use the old 0L value until all the NULL abuses
in the code are fixed.
</content>
</entry>
<entry>
<title>Use __builtin_offsetof for offsetof definition on gcc &gt;= 4</title>
<updated>2009-09-22T21:40:02Z</updated>
<author>
<name>jsg</name>
<email>jsg@openbsd.org</email>
</author>
<published>2009-09-22T21:40:02Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=36909e647c1cb2fe3fca92ec4d8b46de0ea165f2'/>
<id>urn:sha1:36909e647c1cb2fe3fca92ec4d8b46de0ea165f2</id>
<content type='text'>
This is required as gcc grows ever more pedantic with old age
and cavorts with standards bodies that like to create paradoxes.

ok kettenis@ miod@ millert@ espie@
</content>
</entry>
<entry>
<title>Adapt things to use __type_t instead of _BSD_TYPE_T_</title>
<updated>2006-01-06T18:53:04Z</updated>
<author>
<name>millert</name>
<email>millert@openbsd.org</email>
</author>
<published>2006-01-06T18:53:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=c916d9484c509baa9353d23da83498a233020707'/>
<id>urn:sha1:c916d9484c509baa9353d23da83498a233020707</id>
<content type='text'>
Add new sys/_types.h header
Include machine/_types.h or sys/_types.h where applicable
</content>
</entry>
<entry>
<title>major abi changes:</title>
<updated>2005-05-11T18:44:12Z</updated>
<author>
<name>espie</name>
<email>espie@openbsd.org</email>
</author>
<published>2005-05-11T18:44:12Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=561d433d117252e346e75aa72f815d4031622d16'/>
<id>urn:sha1:561d433d117252e346e75aa72f815d4031622d16</id>
<content type='text'>
* introduce the mbstate_t typedef.
impacts gnu libiconv, which has already been taken care of.

* Prepare for mb stuff to really exist, replace macro MB_CUR_MAX with
an external variable __mb_cur_max (impacts libX11 and various ports).

* use mbstate in all the mb &lt;-&gt; wchar functions with state.
* add a stub iswctype function allowing some ports to compile.

bash and gdiff are missing wcscoll, and need to be told there's no i18n
until this is fixed.

Discussed and matthieu, otto, millert, kettenis, deraadt.

Major libc bump
</content>
</entry>
<entry>
<title>introduce some wchar functions (from citrus and an itojun@ diff)</title>
<updated>2005-04-14T20:59:10Z</updated>
<author>
<name>espie</name>
<email>espie@openbsd.org</email>
</author>
<published>2005-04-14T20:59:10Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=bc92a55614afdf8836a7f7cf7ceb4aff145fc23f'/>
<id>urn:sha1:bc92a55614afdf8836a7f7cf7ceb4aff145fc23f</id>
<content type='text'>
okay deraadt@, cloder@, pvalchev@
thanks to everyone who commented on that.
</content>
</entry>
<entry>
<title>Remove the advertising clause in the UCB license which Berkeley</title>
<updated>2003-06-02T19:34:12Z</updated>
<author>
<name>millert</name>
<email>millert@openbsd.org</email>
</author>
<published>2003-06-02T19:34:12Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=e33d3bd3b8a4a23ac37a65baf17f90e92afc8157'/>
<id>urn:sha1:e33d3bd3b8a4a23ac37a65baf17f90e92afc8157</id>
<content type='text'>
rescinded 22 July 1999.  Proofed by myself and Theo.
</content>
</entry>
<entry>
<title>NULL is now 0L so it is the same size as a pointer.</title>
<updated>2002-10-25T21:55:28Z</updated>
<author>
<name>millert</name>
<email>millert@openbsd.org</email>
</author>
<published>2002-10-25T21:55:28Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=8248c2b451a4989c230e4e5c7ca8409a99fdc79a'/>
<id>urn:sha1:8248c2b451a4989c230e4e5c7ca8409a99fdc79a</id>
<content type='text'>
OK mickey@ and discussed with deraadt@
</content>
</entry>
</feed>
