Skip to content

Commit e2de7bf

Browse files
author
Laszlo Kiss
committed
Merge remote-tracking branch 'upstream/master'
2 parents ec914f2 + d958f29 commit e2de7bf

File tree

6 files changed

+23
-11
lines changed

6 files changed

+23
-11
lines changed

ipc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ int dill_ipc_fromfd_mem(int fd, struct dill_ipc_storage *mem) {
117117
return -1;
118118
}
119119

120-
int dill_icp_fromfd(int fd) {
120+
int dill_ipc_fromfd(int fd) {
121121
int err;
122122
struct dill_ipc_conn *obj = malloc(sizeof(struct dill_ipc_conn));
123123
if(dill_slow(!obj)) {err = ENOMEM; goto error1;}

libdill.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
/* www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html */
4747

4848
/* The current interface version. */
49-
#define DILL_VERSION_CURRENT 24
49+
#define DILL_VERSION_CURRENT 25
5050

5151
/* The latest revision of the current interface. */
5252
#define DILL_VERSION_REVISION 0
5353

5454
/* How many past interface versions are still supported. */
55-
#define DILL_VERSION_AGE 4
55+
#define DILL_VERSION_AGE 5
5656

5757
/******************************************************************************/
5858
/* Symbol visibility */

website/download.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ <h1>libdill: Structured Concurrency for C</h1>
1717
<li><a href="faq.html">FAQ</a></li>
1818
</ul>
1919
<h1 id="download">Download</h1>
20-
<p><a href="http://libdill.org/libdill-2.13.tar.gz" class="uri">http://libdill.org/libdill-2.13.tar.gz</a></p>
21-
<pre><code>$ wget http://libdill.org/libdill-2.13.tar.gz
22-
$ tar -xzf libdill-2.13.tar.gz
23-
$ cd libdill-2.13
20+
<p><a href="http://libdill.org/libdill-2.14.tar.gz" class="uri">http://libdill.org/libdill-2.14.tar.gz</a></p>
21+
<pre><code>$ wget http://libdill.org/libdill-2.14.tar.gz
22+
$ tar -xzf libdill-2.14.tar.gz
23+
$ cd libdill-2.14
2424
$ ./configure
2525
$ make
2626
$ sudo make install</code></pre>

website/libdill-history.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ <h1>libdill: Structured Concurrency for C</h1>
1717
<li><a href="faq.html">FAQ</a></li>
1818
</ul>
1919
<h1 id="past-versions">Past versions</h1>
20+
<p><strong>Feb 28th, 2019 <a href="http://libdill.org/libdill-2.14.tar.gz" class="uri">http://libdill.org/libdill-2.14.tar.gz</a></strong></p>
21+
<ul>
22+
<li>ipc_sendfd() and ipc_recvfd() functions added. They allow to send OS-level<br />
23+
file descriptors to different processes via an IPC connection.</li>
24+
<li>Multiple bug fixes.</li>
25+
</ul>
2026
<p><strong>Oct 29th, 2018 <a href="http://libdill.org/libdill-2.13.tar.gz" class="uri">http://libdill.org/libdill-2.13.tar.gz</a></strong></p>
2127
<ul>
2228
<li>An implementation of Happy Eyeballs protocol (RFC 8305) added.</li>

website/src/download.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
# Download
33

4-
<http://libdill.org/libdill-2.13.tar.gz>
4+
<http://libdill.org/libdill-2.14.tar.gz>
55

66
```
7-
$ wget http://libdill.org/libdill-2.13.tar.gz
8-
$ tar -xzf libdill-2.13.tar.gz
9-
$ cd libdill-2.13
7+
$ wget http://libdill.org/libdill-2.14.tar.gz
8+
$ tar -xzf libdill-2.14.tar.gz
9+
$ cd libdill-2.14
1010
$ ./configure
1111
$ make
1212
$ sudo make install

website/src/libdill-history.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
# Past versions
33

4+
**Feb 28th, 2019 <http://libdill.org/libdill-2.14.tar.gz>**
5+
6+
* ipc_sendfd() and ipc_recvfd() functions added. They allow to send OS-level
7+
file descriptors to different processes via an IPC connection.
8+
* Multiple bug fixes.
9+
410
**Oct 29th, 2018 <http://libdill.org/libdill-2.13.tar.gz>**
511

612
* An implementation of Happy Eyeballs protocol (RFC 8305) added.

0 commit comments

Comments
 (0)