<feed xmlns='http://www.w3.org/2005/Atom'>
<title>skalibs/src, branch v2.10.0.0</title>
<subtitle>The skarnet.org C programming library</subtitle>
<id>https://git.skarnet.org/cgit/skalibs/atom/src?h=v2.10.0.0</id>
<link rel='self' href='https://git.skarnet.org/cgit/skalibs/atom/src?h=v2.10.0.0'/>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/'/>
<updated>2020-12-14T13:30:20Z</updated>
<entry>
<title> Add chroot sysdep, fix endianness sysdep string in .h</title>
<updated>2020-12-14T13:30:20Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-14T13:30:20Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=563670ff4bb6c50a91aa31427078515a85a92ce3'/>
<id>urn:sha1:563670ff4bb6c50a91aa31427078515a85a92ce3</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Add mkptemp2()</title>
<updated>2020-12-09T18:46:22Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-09T18:46:22Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=ea189862e2be9ebf35da6174b1ae0083a22cc9ee'/>
<id>urn:sha1:ea189862e2be9ebf35da6174b1ae0083a22cc9ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Get rid of webipc.h and DJBUNIX_FLAG_*</title>
<updated>2020-12-09T17:16:40Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-09T17:16:40Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=e557bab0dcaf35f003fa755b74e4c80000e05e42'/>
<id>urn:sha1:e557bab0dcaf35f003fa755b74e4c80000e05e42</id>
<content type='text'>
 Decent semantic header separation is hard. It's always
an ongoing process. Here socket.h always included webipc.h
for listen(), and webipc.h always included djbunix.h for
socket_internal() and socketpair_internal(). That's ugh.
Just move all the socket stuff into one socket header.
Of course, djbunix.h is still needed most of the time for
fd_close() and other operations on fds, but those are
generic anyway.

 Also, O_CLOEXEC exists everywhere now, so we can use it as well
as O_NONBLOCK instead of redefining the flags in djbunix.h.
</content>
</entry>
<entry>
<title> Some trivial bugfixes and cleanups</title>
<updated>2020-12-07T18:28:04Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-07T18:28:04Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=86312d159d55e99db5a5c82d9c50f31a1fe28199'/>
<id>urn:sha1:86312d159d55e99db5a5c82d9c50f31a1fe28199</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Fix iobufferk_init on recent Linux; remove last superfluous coe</title>
<updated>2020-12-04T14:40:52Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-04T14:40:52Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=2ddd93b4423b94578868e2701c265f8da4350965'/>
<id>urn:sha1:2ddd93b4423b94578868e2701c265f8da4350965</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Add documenting comments to exec.h</title>
<updated>2020-12-04T08:50:42Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-12-04T08:50:42Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=38da4384d3b4630787430b9b38bd4726e00cc7d9'/>
<id>urn:sha1:38da4384d3b4630787430b9b38bd4726e00cc7d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Revamp lock primitives; prepare for 2.10.0.0 instead of 2.9.4.0</title>
<updated>2020-11-29T21:02:32Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-29T21:02:32Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=90b819c6d832046840018ff08b9bc5d0e3b69c37'/>
<id>urn:sha1:90b819c6d832046840018ff08b9bc5d0e3b69c37</id>
<content type='text'>
 flock() doesn't have a way to test for a lock without taking it.
 lockf() doesn't have shared locks.
 The only way to have both is fcntl(). So I rewrote all the
locking stuff around fcntl(), and used the opportunity to change
the interface.
 The point of changing the interface is to stop having to bother
with the old one, so to hell with compatibility, let's just do a
major bump.
</content>
</entry>
<entry>
<title> Do not use skalibs/environ.h</title>
<updated>2020-11-26T09:18:34Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-26T09:18:34Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=e6c5c984461dc4cec0ef2d68524d6bd457e23853'/>
<id>urn:sha1:e6c5c984461dc4cec0ef2d68524d6bd457e23853</id>
<content type='text'>
</content>
</entry>
<entry>
<title> trivial bugfix</title>
<updated>2020-11-26T00:52:14Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-26T00:52:14Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=466f416e19908fd7f7fdf10a279e4c4a69412797'/>
<id>urn:sha1:466f416e19908fd7f7fdf10a279e4c4a69412797</id>
<content type='text'>
</content>
</entry>
<entry>
<title> child_spawn cleanup, configure cleanup</title>
<updated>2020-11-25T15:00:45Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-25T15:00:45Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=21e6ea800cc96ba76e94ad8de1dfa58ab1b7ceb6'/>
<id>urn:sha1:21e6ea800cc96ba76e94ad8de1dfa58ab1b7ceb6</id>
<content type='text'>
</content>
</entry>
</feed>
