Displaying 2 results from an estimated 2 matches for "_binary_init_len".
Did you mean:
_binary_init_end
2017 Aug 23
0
[PATCH v2 supermin 1/1] Switch binary embedding to a C source
...t;format-ext2-init-bin.h>
value
supermin_binary_init (value unitv)
{
CAMLparam1 (unitv);
CAMLlocal1 (sv);
- size_t n = &_binary_init_end - &_binary_init_start;
- sv = caml_alloc_string (n);
- memcpy (String_val (sv), &_binary_init_start, n);
+ sv = caml_alloc_string (_binary_init_len);
+ memcpy (String_val (sv), _binary_init, _binary_init_len);
CAMLreturn (sv);
}
--
2.13.5
2017 Aug 23
2
[PATCH v2 supermin 0/1] Fix embedding of init
Hi,
this patch replaces the first simpler version:
https://www.redhat.com/archives/libguestfs/2017-August/msg00117.html
The approach now is to use a C snippet, which should pose way less
compatibility issues.
Thanks,
Pino Toscano (1):
Switch binary embedding to a C source
.gitignore | 2 +-
src/Makefile.am | 18 +++++++++---------
src/{bin2s.pl => bin2c.pl} |