<feed xmlns='http://www.w3.org/2005/Atom'>
<title>skalibs/src/libstddjb, branch v2.10.0.3</title>
<subtitle>The skarnet.org C programming library</subtitle>
<id>https://git.skarnet.org/cgit/skalibs/atom/src/libstddjb?h=v2.10.0.3</id>
<link rel='self' href='https://git.skarnet.org/cgit/skalibs/atom/src/libstddjb?h=v2.10.0.3'/>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/'/>
<updated>2021-02-13T01:24:32Z</updated>
<entry>
<title> bugfix: ipc_bind_reuse_lock must ignore umask</title>
<updated>2021-02-13T01:24:32Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2021-02-13T01:24:32Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=025e5ed74528cc2e8676268ad07b169949d89ae3'/>
<id>urn:sha1:025e5ed74528cc2e8676268ad07b169949d89ae3</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> 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> 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>
<entry>
<title> Complete revamp of the pathexec functions</title>
<updated>2020-11-24T21:45:56Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-24T21:45:56Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=18e43565574b700befc832ed4d25d25e40951f68'/>
<id>urn:sha1:18e43565574b700befc832ed4d25d25e40951f68</id>
<content type='text'>
- pathexec_run is now called exec_ae
    a for provided file name (default: argv[0])
    e for provided envp (default: environ)
- pathexec is now called mexec. m for merge environment. Option letters are:
    a for provided file name (default: argv[0])
    e for provided envp (default: environ)
    f for provided envp *and* length of the envp
    m for provided modif string plus its length (the length is always needed
because the modifs are null-terminated)
    n for provided modif string, length *and* number of modifs
- functions have a foo0 version for _exit(0) when argv[0] is null
- functions have a xfoo version to die if the exec fails
- and a xfoo0
- Compatibility #defines and #includes are there until the next major bump
</content>
</entry>
<entry>
<title> Save syscalls on coe and ndelay_on</title>
<updated>2020-11-23T12:36:34Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-23T12:36:34Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=265092c55d40f362a521eee97676e0d51ef17800'/>
<id>urn:sha1:265092c55d40f362a521eee97676e0d51ef17800</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Add fd_shutdown()</title>
<updated>2020-11-20T15:22:48Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-20T15:22:48Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=cc31550d01415181e70150ad3e9043d049b07a09'/>
<id>urn:sha1:cc31550d01415181e70150ad3e9043d049b07a09</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Add ipc_bind_reuse_lock, rewrite ipc_bind_reuse to use it</title>
<updated>2020-11-08T09:32:32Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-11-08T09:32:32Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=b992db748b9ffe8d88d609950f5da28b5a1db135'/>
<id>urn:sha1:b992db748b9ffe8d88d609950f5da28b5a1db135</id>
<content type='text'>
</content>
</entry>
</feed>
