Giter Site home page Giter Site logo

Comments (8)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024 1
I should mention, that the memory leak happens in the client process.

I also found a hint to the problem. If you change the type of the Outlet to 
float32, everything works as expected, so the problem seems to be related to 
the string type.

Original comment by [email protected] on 15 Aug 2014 at 2:07

from lsl_archived.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Same Problem here using the c# wrapper!

Original comment by [email protected] on 17 Mar 2015 at 12:16

from lsl_archived.

ulatekh avatar ulatekh commented on July 22, 2024

The reason seems to be obvious -- lsl_pull_chunk_str() calls malloc() for each string it returns. There's no easy way to call free() from C# (nor from Python, I assume), so an additional C function, e.g. "lsl_chunk_str_free(char **data_buffer, double *timestamp_buffer, unsigned long data_buffer_elements, unsigned long data_buffer_row_elements)", would have to be written to call free() in a 2-level loop.

from lsl_archived.

ulatekh avatar ulatekh commented on July 22, 2024

It would seem that the C++ interface will have the same problem if an exception is thrown -- lsl::stream_inlet::pull_chunk_multiplexed() and lsl::stream_inlet::pull_sample() both call check_error() (which can throw an exception) before they get a chance to call lsl_destroy_string().

from lsl_archived.

chkothe avatar chkothe commented on July 22, 2024

Hi ulatekh,

good point re string freeing. As you noticed, liblsl actually offers a
function just for that purpose, lsl_destroy_string, it's just that the
Python interface isn't calling it. We'll address that at the next
opportunity.

Now regarding the C++ interface, you're right, though these two functions
basically don't throw exceptions in practice unless you disable the
recovery option when reading from a stream (in which case you can get one
when the sender program disconnects); however, you basically leak one
string for each disconnect, and I suppose that would have to happen a few
hundred million times in a row until you run out of memory! ;)

Best,
Christian

On Thu, Aug 13, 2015 at 1:42 PM, ulatekh [email protected] wrote:

It would seem that the C++ interface will have the same problem if an
exception is thrown -- lsl::stream_inlet::pull_chunk_multiplexed() and
lsl::stream_inlet::pull_sample() both call check_error() (which can throw
an exception) before they get a chance to call lsl_destroy_string().


Reply to this email directly or view it on GitHub
sccn/labstreaminglayer#20 (comment)
.

from lsl_archived.

ulatekh avatar ulatekh commented on July 22, 2024

@chkothe: I've written a fix for the C# interop layer, but haven't been able to test it yet -- I'm still trying to get running with LSL in general. I also fixed some potential memory leaks in lsl_inlet_c.cpp, but again, can't test them yet. I can commit them to a branch of my LSL fork if you want to see them now.

from lsl_archived.

chkothe avatar chkothe commented on July 22, 2024

Hey ulatekh,

thanks, fixes like that are most welcome! Take your time, and feel free to
open a pull request on GitHub, that would be most convenient for David and
myself! (but patch is also fine)

Best,
Christian

On Thu, Aug 13, 2015 at 5:12 PM, ulatekh [email protected] wrote:

@chkothe https://github.com/chkothe: I've written a fix for the C#
interop layer, but haven't been able to test it yet -- I'm still trying to
get running with LSL in general. I also fixed some potential memory leaks
in lsl_inlet_c.cpp, but again, can't test them yet. I can commit them to a
branch of my LSL fork if you want to see them now.


Reply to this email directly or view it on GitHub
sccn/labstreaminglayer#20 (comment)
.

from lsl_archived.

ulatekh avatar ulatekh commented on July 22, 2024

sccn/labstreaminglayer#50 contains my fixes for the C# interop layer, as well as some fixes in the existing C/C++ code.
Someone in a position to test the python wrapper can use the C# changes as inspiration.

from lsl_archived.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.