Displaying 9 results from an estimated 9 matches for "fmemopen".
2020 Feb 21
0
Patches for Samba 4.12.0rc3 for OmniOS
...x: tdb_mutex_init failed for /var/samba/lock/gencache.tdb: Device busy
This patch fixes this:
https://www.grebo.net/~peter/omnios/samba/4.12/mutexattr.patch <https://www.grebo.net/~peter/omnios/samba/4.12/mutexattr.patch>
(Probably an OmniOS bug, but it?s an easy patch in Samba so?)
5. fmemopen() doesn?t exist on OmniOS. This is just a test program and it?s not built by default in rc3 but anyway:
https://www.grebo.net/~peter/omnios/samba/4.12/fmemopen.patch <https://www.grebo.net/~peter/omnios/samba/4.12/fmemopen.patch>
In order to build it I also compiled and built local vers...
2020 Feb 19
2
[Announce] Samba 4.12.0rc3 Available for Download
Release Announcements
=====================
This is the third release candidate of Samba 4.12. This is *not*
intended for production environments and is designed for testing
purposes only. Please report any defects via the Samba bug reporting
system at https://bugzilla.samba.org/.
Samba 4.12 will be the next version of the Samba suite.
UPGRADING
=========
NEW FEATURES/CHANGES
2020 Feb 19
2
[Announce] Samba 4.12.0rc3 Available for Download
Release Announcements
=====================
This is the third release candidate of Samba 4.12. This is *not*
intended for production environments and is designed for testing
purposes only. Please report any defects via the Samba bug reporting
system at https://bugzilla.samba.org/.
Samba 4.12 will be the next version of the Samba suite.
UPGRADING
=========
NEW FEATURES/CHANGES
2019 Mar 08
2
Query about JIT
...desired function
pointer.
Is this approach the right one? One issue I foresee is that libclang's
clang_parseTranslateUnit() function expects the C code to be from a file
(although the file can be in-memory), whereas in my case the C code needs
to be picked up from a char buffer - necessitating fmemopen(), etc.
Thanks for your assistance.
Regards,
Rajesh Jayaprakash
(https://github.com/shikantaza/plisp)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190308/7b357f28/attachment-0001.html>
2019 Mar 12
2
Query about JIT
...;
>
> Is this approach the right one? One issue I foresee is that libclang's
> clang_parseTranslateUnit() function expects the C code to be from a file
> (although the file can be in-memory), whereas in my case the C code needs
> to be picked up from a char buffer - necessitating fmemopen(), etc.
>
>
>
> Thanks for your assistance.
>
>
>
> Regards,
> Rajesh Jayaprakash
>
> (https://github.com/shikantaza/plisp)
>
>
> --------------------------------------------------------------------
> Joint Stock Company Intel A/O
> Registered legal a...
2020 Jul 31
0
[RFC nbdkit PATCH 4/4] sh, eval: Add .list_exports support
...+225,97 @@ struct sh_handle {
int can_zero;
};
+static int
+parse_exports (const char *script,
+ const char *s, size_t slen, struct nbdkit_exports *exports)
+{
+ FILE *fp = NULL;
+ CLEANUP_FREE char *line = NULL;
+ size_t linelen = 0;
+ ssize_t len;
+ int ret = -1;
+
+ fp = fmemopen ((void *) s, slen, "r");
+ if (!fp) {
+ nbdkit_error ("%s: fmemopen: %m", script);
+ goto out;
+ }
+
+ while ((len = getline (&line, &linelen, fp)) != -1) {
+ bool quoted = *line == '\'';
+ char *p = line, *q = p + quoted, *desc;
+
+ /* Modi...
2000 Dec 24
2
Using vorbisfile with an in-memory file instead of FILE*
Hi,
How can I use vorbisfile when I've already read the data into memory of an
OGG file?
Olaf van der Spek
Almere, Holland
Olaf@XCC.TMFWeb.NL
http://xcc.tiberian.com/
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
containing only the word
2008 Jun 26
1
Compilation error during package installation
...ct files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for fmemopen... yes
checking for open_memstream... yes
checking for rintf... yes
checking for finite... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking f...
2020 Jul 31
6
[RFC nbdkit PATCH 0/4] Progress towards .list_exports
This takes Rich's API proposal and starts fleshing it out with enough
meat that I was able to test 'nbdkit eval' advertising multiple
exports with descriptions paired with 'qemu-nbd --list'.
Eric Blake (3):
server: Add exports list functions
server: Prepare to use export list from plugin
sh, eval: Add .list_exports support
Richard W.M. Jones (1):
server: Implement