]> Cypherpunks.ru repositories - gostls13.git/commitdiff
runtime: run "gofmt -s -w"
authorCuong Manh Le <cuong.manhle.vn@gmail.com>
Fri, 12 Aug 2022 09:37:42 +0000 (16:37 +0700)
committerGopher Robot <gobot@golang.org>
Fri, 12 Aug 2022 15:45:17 +0000 (15:45 +0000)
Change-Id: I7eb3de35d1f1f0237962735450b37d738966f30c
Reviewed-on: https://go-review.googlesource.com/c/go/+/423254
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
src/runtime/memmove_test.go
src/runtime/pprof/pprof_test.go
src/runtime/runtime2.go
src/runtime/signal_windows.go
src/runtime/testdata/testprog/unsafe.go
src/runtime/trace.go

index 88873208ebe9c183efb97c629daa0a350ae897af..dbb4b6a8368a0d42e32d3445648675d23b31638a 100644 (file)
@@ -417,20 +417,20 @@ func BenchmarkMemclrRange(b *testing.B) {
        }
 
        benchSizes := []RunData{
-               RunData{[]int{1043, 1078, 1894, 1582, 1044, 1165, 1467, 1100, 1919, 1562, 1932, 1645,
+               {[]int{1043, 1078, 1894, 1582, 1044, 1165, 1467, 1100, 1919, 1562, 1932, 1645,
                        1412, 1038, 1576, 1200, 1029, 1336, 1095, 1494, 1350, 1025, 1502, 1548, 1316, 1296,
                        1868, 1639, 1546, 1626, 1642, 1308, 1726, 1665, 1678, 1187, 1515, 1598, 1353, 1237,
                        1977, 1452, 2012, 1914, 1514, 1136, 1975, 1618, 1536, 1695, 1600, 1733, 1392, 1099,
                        1358, 1996, 1224, 1783, 1197, 1838, 1460, 1556, 1554, 2020}}, // 1kb-2kb
-               RunData{[]int{3964, 5139, 6573, 7775, 6553, 2413, 3466, 5394, 2469, 7336, 7091, 6745,
+               {[]int{3964, 5139, 6573, 7775, 6553, 2413, 3466, 5394, 2469, 7336, 7091, 6745,
                        4028, 5643, 6164, 3475, 4138, 6908, 7559, 3335, 5660, 4122, 3945, 2082, 7564, 6584,
                        5111, 2288, 6789, 2797, 4928, 7986, 5163, 5447, 2999, 4968, 3174, 3202, 7908, 8137,
                        4735, 6161, 4646, 7592, 3083, 5329, 3687, 2754, 3599, 7231, 6455, 2549, 8063, 2189,
                        7121, 5048, 4277, 6626, 6306, 2815, 7473, 3963, 7549, 7255}}, // 2kb-8kb
-               RunData{[]int{16304, 15936, 15760, 4736, 9136, 11184, 10160, 5952, 14560, 15744,
+               {[]int{16304, 15936, 15760, 4736, 9136, 11184, 10160, 5952, 14560, 15744,
                        6624, 5872, 13088, 14656, 14192, 10304, 4112, 10384, 9344, 4496, 11392, 7024,
                        5200, 10064, 14784, 5808, 13504, 10480, 8512, 4896, 13264, 5600}}, // 4kb-16kb
-               RunData{[]int{164576, 233136, 220224, 183280, 214112, 217248, 228560, 201728}}, // 128kb-256kb
+               {[]int{164576, 233136, 220224, 183280, 214112, 217248, 228560, 201728}}, // 128kb-256kb
        }
 
        for _, t := range benchSizes {
index aabc180de3fd17b8b9f059b8494df2911a277fd6..28b8f4319e68c6fc03c4de4e1301efe56ff9ffa3 100644 (file)
@@ -1319,13 +1319,13 @@ func TestGoroutineCounts(t *testing.T) {
                t.Errorf("protobuf profile is invalid: %v", err)
        }
        expectedLabels := map[int64]map[string]string{
-               50: map[string]string{},
-               44: map[string]string{"label": "value"},
-               40: map[string]string{},
-               36: map[string]string{"label": "value"},
-               10: map[string]string{},
-               9:  map[string]string{"label": "value"},
-               1:  map[string]string{},
+               50: {},
+               44: {"label": "value"},
+               40: {},
+               36: {"label": "value"},
+               10: {},
+               9:  {"label": "value"},
+               1:  {},
        }
        if !containsCountsLabels(p, expectedLabels) {
                t.Errorf("expected count profile to contain goroutines with counts and labels %v, got %v",
index 884d6cc096082cd641e144c996caa760a9c2607e..32ad34ccdf1dc9d0bc3bb634789f90a10f5295d2 100644 (file)
@@ -779,7 +779,7 @@ type schedt struct {
 
        pidle        puintptr // idle p's
        npidle       atomic.Int32
-       nmspinning   atomic.Int32 // See "Worker thread parking/unparking" comment in proc.go.
+       nmspinning   atomic.Int32  // See "Worker thread parking/unparking" comment in proc.go.
        needspinning atomic.Uint32 // See "Delicate dance" comment in proc.go. Boolean. Must hold sched.lock to set to 1.
 
        // Global runnable queue.
index 0cf8ba8cdf5f16b50ae7c95c84246913939051cc..0f1929e09a943d5631ea5522684b9a07b5957e23 100644 (file)
@@ -200,6 +200,7 @@ func lastcontinuehandler(info *exceptionrecord, r *context, gp *g) int32 {
 }
 
 // Always called on g0. gp is the G where the exception occurred.
+//
 //go:nosplit
 func winthrow(info *exceptionrecord, r *context, gp *g) {
        g0 := getg()
index d6dddf22c269e4985ee4b6cf4eed284405b826bb..021b08fa528f5f39e96f963793df253e7a696642 100644 (file)
@@ -9,4 +9,4 @@ func init() {
 func panicOnNilAndEleSizeIsZero() {
        var p *struct{}
        _ = unsafe.Slice(p, 5)
-}
\ No newline at end of file
+}
index 0bae0db88d38443c411b80e4532d254070348e6c..1b5e9df38b78c9f6d7faaf3df6255c8dd144b24a 100644 (file)
@@ -1158,7 +1158,7 @@ func traceFrames(bufp traceBufPtr, pcs []uintptr) ([]traceFrame, traceBufPtr) {
 //
 //go:systemstack
 func (tab *traceStackTable) dump(bufp traceBufPtr) traceBufPtr {
-       for i, _ := range tab.tab {
+       for i := range tab.tab {
                stk := tab.tab[i].ptr()
                for ; stk != nil; stk = stk.link.ptr() {
                        var frames []traceFrame