| File: Internal\Padding.cs | Web Access |
| Project: src\runtime\src\libraries\System.Threading.Tasks.Dataflow\src\System.Threading.Tasks.Dataflow.csproj (System.Threading.Tasks.Dataflow) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // Padding.cs // // // Helper structs for padding over CPU cache lines to avoid false sharing. // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Runtime.InteropServices; using Internal; namespace System.Threading.Tasks.Dataflow.Internal { /// <summary>Value type that contains single Int64 value padded on both sides.</summary> [StructLayout(LayoutKind.Explicit, Size = 2 * PaddingHelpers.CACHE_LINE_SIZE)] internal struct PaddedInt64 { [FieldOffset(PaddingHelpers.CACHE_LINE_SIZE)] internal long Value; } }