Nikita Tsukanov
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/Shared/PlatformSupport/StandardRuntimePlatform.cs
|
|
|
@ -29,11 +29,11 @@ namespace Avalonia.Shared.PlatformSupport |
|
|
|
{ |
|
|
|
private readonly StandardRuntimePlatform _plat; |
|
|
|
private IntPtr _address; |
|
|
|
private readonly object _lock = new object(); |
|
|
|
#if DEBUG
|
|
|
|
private static readonly List<string> Backtraces = new List<string>(); |
|
|
|
private static Thread GCThread; |
|
|
|
private readonly string _backtrace; |
|
|
|
private readonly object _lock = new object(); |
|
|
|
private static readonly object _btlock = new object(); |
|
|
|
|
|
|
|
class GCThreadDetector |
|
|
|
@ -164,4 +164,4 @@ namespace Avalonia.Shared.PlatformSupport |
|
|
|
void Free(IntPtr ptr, int len) => Marshal.FreeHGlobal(ptr); |
|
|
|
#endif
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|