configID uint8
ciphersuite echCipher
transcript hash.Hash
- // inner indicates that the initial client_hello we recieved contained an
+ // inner indicates that the initial client_hello we received contained an
// encrypted_client_hello extension that indicated it was an "inner" hello.
// We don't do any additional processing of the hello in this case, so all
// fields above are unset.
// ObjMask is a bitmap where each bit corresponds to an object in a span.
//
-// It is sized to accomodate all size classes.
+// It is sized to accommodate all size classes.
type ObjMask [MaxObjsPerSpan / (goarch.PtrSize * 8)]uintptr
// PtrMask is a bitmap where each bit represents a pointer-word in a single runtime page.
// Look up the size and derive the number of objects in a span.
// We're only concerned with small objects in single-page spans,
// and gc.PtrMask enforces this by being statically sized to
- // accomodate only such spans.
+ // accommodate only such spans.
size := uintptr(gc.SizeClassToSize[sizeClass])
nObj := uintptr(gc.SizeClassToNPages[sizeClass]) * gc.PageSize / size
t.Skipf("skipping: gdb version %d.%d too old", major, minor)
}
if major < 12 || (major == 12 && minor < 1) {
- t.Logf("gdb version <12.1 is known to crash due to a SIGWINCH recieved in non-interactive mode; if you see a crash, some test may be sending SIGWINCH to the whole process group. See go.dev/issue/58932.")
+ t.Logf("gdb version <12.1 is known to crash due to a SIGWINCH received in non-interactive mode; if you see a crash, some test may be sending SIGWINCH to the whole process group. See go.dev/issue/58932.")
}
t.Logf("gdb version %d.%d", major, minor)
}