Displaying 4 results from an estimated 4 matches for "perlembed".
2017 Jan 26
1
Re: [nbdkit PATCH 0/2] bind .zero to more languages
On 01/24/2017 09:16 AM, Richard W.M. Jones wrote:
> In Perl, old code to raise an error would look like:
>
> sub pread
> {
> my $h = shift;
> my $count = shift;
> my $offset = shift;
> my $ret;
> read ($FH, $ret, $count, $offset) || die "read: $!"
> return $ret;
> }
>
> (Note that die does not exit the program,
2017 Jan 31
4
[nbdkit PATCH v3 0/3] bind .zero to Perl
Requires patch 1 and 2 of the python series:
https://www.redhat.com/archives/libguestfs/2017-January/msg00126.html
This is the perl implementation along the same lines.
We still haven't decided if patch 1 of the python series should
change OCaml to report errno as reliable or not, but perhaps we
can commit that patch as-is now and then touch things up further
when we actually get set_error
2010 Jun 12
1
CentOS 5 Update error
...share/man/man1/perldsc.1.gz from install of perl-5.8.8-32.el5_5.1.x86_64 conflicts with file from package perl-5.8.8-27.el5.i386
file /usr/share/man/man1/perlebcdic.1.gz from install of perl-5.8.8-32.el5_5.1.x86_64 conflicts with file from package perl-5.8.8-27.el5.i386
file /usr/share/man/man1/perlembed.1.gz from install of perl-5.8.8-32.el5_5.1.x86_64 conflicts with file from package perl-5.8.8-27.el5.i386
file /usr/share/man/man1/perlepoc.1.gz from install of perl-5.8.8-32.el5_5.1.x86_64 conflicts with file from package perl-5.8.8-27.el5.i386
file /usr/share/man/man1/perlfaq.1.gz from instal...
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: Expose nbdkit_set_error to python script
python: Support zero callback
docs/nbdkit-plugin.pod | 64 +++++++++++++++++++++++----
includ...