diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-02-02 18:37:49 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-02-02 19:32:13 +0100 |
commit | 48460703229d73fbacdd0d6b0d0f01a54f7ce751 (patch) | |
tree | 991cf63384f64b206b3c82dbbb15532c6f011d4a /device/alignment_test.go | |
parent | a9f80d8c587df99c6e8f57704aef3fe1ac62d0db (diff) |
device: use a waiting sync.Pool instead of a channel
Channels are FIFO which means we have guaranteed cache misses.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'device/alignment_test.go')
-rw-r--r-- | device/alignment_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/device/alignment_test.go b/device/alignment_test.go index 5587cbe..46baeb1 100644 --- a/device/alignment_test.go +++ b/device/alignment_test.go @@ -42,7 +42,6 @@ func TestPeerAlignment(t *testing.T) { checkAlignment(t, "Peer.isRunning", unsafe.Offsetof(p.isRunning)) } - // TestDeviceAlignment checks that atomically-accessed fields are // aligned to 64-bit boundaries, as required by the atomic package. // |