mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
226 B
C#
13 lines
226 B
C#
using System.Threading;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.System.Threading
|
|
{
|
|
[Plug(Target = typeof(Thread))]
|
|
public static class ThreadImpl
|
|
{
|
|
public static void MemoryBarrier()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|