in JetBrains.Profiler.Api/src/Impl/MacOsX/MacOsXHelper.cs [7:14]
internal static bool IsCoreApiAlreadyLoaded()
{
var handle = LibDyldDylib.dlopen(LibCoreApiDylib.LibraryName, RTLD.RTLD_GLOBAL | RTLD.RTLD_LAZY | RTLD.RTLD_NOLOAD);
if (handle == IntPtr.Zero)
return false;
LibDyldDylib.dlclose(handle);
return true;
}