search for: 5d380e3

Displaying 2 results from an estimated 2 matches for "5d380e3".

2017 Jan 31
1
[nbdkit PATCH] tls: Fix build on RHEL 5
Don't assume that errno will be implicitly available. Signed-off-by: Eric Blake <eblake@redhat.com> --- src/tls.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tls.c b/src/tls.c index 5d380e3..0e9ea11 100644 --- a/src/tls.c +++ b/src/tls.c @@ -38,6 +38,7 @@ #include <string.h> #include <unistd.h> #include <assert.h> +#include <errno.h> #include <pthread.h> -- 2.9.3
2017 Jan 27
6
[nbdkit PATCH v3 0/4] bind .zero to Python
This cleans up the existing code base with regards to implicit use of errno from language bindings, then rebases the previous work in python on top of that. I'm still playing with the perl bindings, but got further after reading 'perldoc perlembed'. Eric Blake (4): plugins: Don't use bogus errno from non-C plugins plugins: Add new nbdkit_set_error() utility function python: