Displaying 2 results from an estimated 2 matches for "tcl_open".
2018 Jul 06
0
Re: [PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
...that
> multiple threads are not calling into the interpreter at the same
> time. We do not have such a threading model in nbdkit (see also VDDK)
> but at the same time I was not able to get Tcl to crash.
>
> The Tcl interpreter leaks quite a lot of memory from the tcl_load and
> tcl_open calls. This may be connected with the previous point. It
> makes valgrind fairly useless so it is disabled for Tcl.
> ---
> +=item C<is_rotational>
> +
> +(Optional)
> +
> + proc is_rotational {h} {
> + return $bool
> + }
> +
> +Return a boolean indica...
2018 Jul 01
2
[PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
...nbdkit uses mutexes to ensure that
multiple threads are not calling into the interpreter at the same
time. We do not have such a threading model in nbdkit (see also VDDK)
but at the same time I was not able to get Tcl to crash.
The Tcl interpreter leaks quite a lot of memory from the tcl_load and
tcl_open calls. This may be connected with the previous point. It
makes valgrind fairly useless so it is disabled for Tcl.
---
.gitignore | 1 +
README | 6 +-
common-rules.mk | 1 +
configure.ac | 17 +
docs/...