Displaying 10 results from an estimated 10 matches for "make_".
Did you mean:
make
2020 Jun 01
1
[PATCH] erlang: Port to libei for Erlang 23
...ull-read.h"
@@ -38,36 +34,25 @@ instead of erl_interface.
#include "guestfs.h"
#include "guestfs-utils.h"
+#include "actions.h"
+
guestfs_h *g;
-extern ETERM *dispatch (ETERM *message);
-extern int atom_equals (ETERM *atom, const char *name);
-extern ETERM *make_error (const char *funname);
-extern ETERM *unknown_optarg (const char *funname, ETERM *optargname);
-extern ETERM *unknown_function (ETERM *fun);
-extern ETERM *make_string_list (char **r);
-extern ETERM *make_table (char **r);
-extern ETERM *make_bool (int r);
-extern char **get_string_list (ETERM...
2012 Dec 11
0
Problems with ADS and user mapping
...valid users = clearcase_albd vobadmin
writeable = yes
create mask = 0755
# /etc/samba/user.map
root = administrator admin
nobody = guest pcguest smbguest
vobadmin = ADOMAIN\clearcase_albd clearcase_albd
## /var/log/samba/CCSERVER
[2012/12/11 11:50:10, 1] smbd/service.c:676(make_
connection_snum)
create_connection_server_info failed: NT_STATUS_ACCESS_DENIED
[2012/12/11 11:51:17, 2] auth/auth.c:320(check_ntlm_password)
check_ntlm_password: Authentication for user [clearcase_albd] ->
[vobadmin] FAILED with error NT_STATUS_NO_SUCH_USER
[2012/12/11 11:51:17, 2] smbd/s...
2007 Sep 14
0
[LLVMdev] C interface
...each library instead. They're just glue
> which the linker will trivially DCE, so that approach may have merit.
>
> — Gordon
>
>
> [1]
> *$ cat emit_bc.ml*
> open Llvm
>
> let emit_bc filename =
> let m = create_module filename in
>
> let big_fn_ty = make_pointer_type
> (make_function_type (void_type ())
> [| make_vector_type (float_type ()) 4;
> make_pointer_type
> (make_struct_type [| double_type ();
>...
2007 Sep 12
7
[LLVMdev] C interface
...it might make more sense
to implement the C bindings in each library instead. They're just
glue which the linker will trivially DCE, so that approach may have
merit.
— Gordon
[1]
$ cat emit_bc.ml
open Llvm
let emit_bc filename =
let m = create_module filename in
let big_fn_ty = make_pointer_type
(make_function_type (void_type ())
[| make_vector_type (float_type ()) 4;
make_pointer_type
(make_struct_type [| double_type ();
x86fp80_type ();...
2010 Jun 10
2
Peculiar Samba permission denied error
...Konqueror on another
linux, I get this on the server:
tail /var/log/samba/log.smbd
"...
[2010/06/07 09:41:37, 2] auth/auth.c:310(check_ntlm_
password)
check_ntlm_password: authentication for user [me] -> [me] ->
[OURDOMAIN+me] succeeded
[2010/06/07 09:41:37, 0] smbd/service.c:1009(make_connection_snum)
'/share/samba/domain/home' does not exist or permission denied when
connecting to [xdrives] Error was Permission denied
..."
Copy pasting the entry ?'/share/samba/domain/home'? right out of the above:
ServerName:~ # ls -lah /share/samba/domain/home
total 512...
2016 Mar 06
8
[PATCH 0/5] Use less stack.
Various changes/fixes to use smaller stack frames.
Rich.
2016 Mar 07
2
[PATCH v2] Use less stack.
...no, "malloc");
for (i = 0; i < nr_threads; ++i) {
thread_data[i].thread_num = i;
diff --git a/erlang/erl-guestfs-proto.c b/erlang/erl-guestfs-proto.c
index 658a0ef..0c2f545 100644
--- a/erlang/erl-guestfs-proto.c
+++ b/erlang/erl-guestfs-proto.c
@@ -201,11 +201,14 @@ ETERM *
make_string_list (char **r)
{
size_t i, size;
+ ETERM **t;
for (size = 0; r[size] != NULL; ++size)
;
- ETERM *t[size];
+ t = malloc (sizeof (ETERM *) * size);
+ if (t == NULL)
+ return make_error ("make_string_list");
for (i = 0; r[i] != NULL; ++i)
t[i] = erl_mk...
2012 Oct 30
5
[PATCH v3 0/5] Add symbol versioning.
This is a simpler patch series to add symbol versioning.
I have pushed patches 1-3 upstream.
Rich.
2012 Oct 30
7
[PATCH v2 0/7] Add symbol versioning (now working).
This rather more complex patch series adds symbol versioning (7/7
shows it in action). This works for me, tested by running old and new
virt-inspector binaries against the new library.
Rich.
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.