GithubHelp home page GithubHelp logo

Comments (5)

nulltoken avatar nulltoken commented on May 18, 2024

A bug report has been filled @ http://bugzilla.xamarin.com/show_bug.cgi?id=2266

from libgit2sharp.

nulltoken avatar nulltoken commented on May 18, 2024
  • Updated the bugzilla with a repro case
  • Had a (very cool) chat session with @joncham on this topic.

from libgit2sharp.

joncham avatar joncham commented on May 18, 2024

So, I think I tracked down the issue. The problem is here: https://github.com/libgit2/libgit2sharp/blob/vNext/LibGit2Sharp/Core/NativeMethods.cs#L30

A call to a pinvoke method is in the same method that sets the PATH variable. When mono attempts to JIT the .cctor of NativeMethods it tries to load git2.dll. Note this is when JIT'ing the method itself. That means the body of the method has not yet executed, and the PATH variable has not been adjusted. I think the easiest way to solve this is to extract the pinvoke call, git_threads_init, into a separate method that can be called from the .cctor and mark it with the NoInlining option. This should give the JIT the chance to run the body of the .cctor before trying to resolve the native library for the pinvoke call.

[MethodImpl(MethodImplOptions.NoInlining)]
static void InitGit()
{
NativeMethods.git_threads_init();
}

from libgit2sharp.

joncham avatar joncham commented on May 18, 2024

And I created a pull request: #190

from libgit2sharp.

nulltoken avatar nulltoken commented on May 18, 2024

And I created a pull request: #190

@joncham And I (gladly) merged it...

...And you're fantastic!

from libgit2sharp.

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.