Code Monkey home page Code Monkey logo

Comments (6)

WebFreak001 avatar WebFreak001 commented on July 4, 2024 1

It's probably not safe using the same rollback allocator across multiple threads.

Having an allocator per thread should be safe, assuming the internally used global Mallocator.instance it is using is thread-safe

from libdparse.

jaapgeurts avatar jaapgeurts commented on July 4, 2024 1

I found the problem. The StringCache went out of scope too early. Holding on to it fixed the problem. Right now libdparse is running fine in multiple threads. No more memory issues.

from libdparse.

PetarKirov avatar PetarKirov commented on July 4, 2024

Thanks for raising this issue. I think we can enable the discussions feature on the repo and there would be more appropriate place to ask, but I see no harm in asking here, of course.

Q: Is libdparse or the RollBackAllocator (and its dependencies) reentrant?

How do you define reentrant? Or do you mean thread-safe?

In a single threaded environment, reentrancy is usually about a library calling a user-defined callback and whether the code inside the callback is allowed to call the library. E.g.

library A -> callback -> library A

If the question is about thread safety, I'd say that unless you see a method explicitly marked as shared, then it's likely not thread-safe.

So the question is: what data do you share between the threads and how do you synchronize the access to it?


This seems to happen when the GC kicks in (either manually or automatically.

I have heard of similar issues (though I haven't had the chance to investigate any of them), so it's likely a bug in this library (or its dependencies). Most likely caused by missing calls to GC.addRange.

from libdparse.

WebFreak001 avatar WebFreak001 commented on July 4, 2024

there were fixes in the latest release of libdparse about the rollback allocator and GC breakage, but it's already release since quite a while ago so I would assume you already have it installed (v0.18.1)

from libdparse.

jaapgeurts avatar jaapgeurts commented on July 4, 2024

How do you define reentrant? Or do you mean thread-safe?

Yes, I did mean thread safe.

I would assume you already have it installed (v0.18.1)

I do. I'm using the master branch as my dependency( which is 0.18.1)

I'll see if I can do some debugging on my end. Thanks for the help!

from libdparse.

jaapgeurts avatar jaapgeurts commented on July 4, 2024

It all seems thread-safe. The D docs state that Mallocator is thread safe. I'll keep debugging.

from libdparse.

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.