
* proc: correctly update local variables after continue At various point during the execution of the call injection protocol the process is resumed and the call injection goroutine could migrate to a different thread, we must make sure to update our local variables correctly after every point where the target program is resumed. 'fncall122debug_clean' on 'f469a0a5'. * go.mod: update golang.org/x/tools Go 1.22 broke golang.org/x/tools/packages * cmd/dlv: disable TestStaticcheck with go1.22 Go 1.22 is not yet supported by staticcheck.
10 lines
253 B
Go
10 lines
253 B
Go
// Copyright 2022 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package pkgbits
|
|
|
|
const (
|
|
flagSyncMarkers = 1 << iota // file format contains sync markers
|
|
)
|