Michael Pratt

Results 22 issues of Michael Pratt

From exec.Cmd.Output: "Any returned error will usually be of type *ExitError." When the binary cannot be found, the error is actually *exec.Error. Allow for non-ExitError rather than panicking. Before: (...

There should be a way to specify the baud rate of IO peripherals (UART, I2C, SPI, etc), preferably at runtime, and in standard units. Currently, on the STM32F4, the UART...

Most drivers now use an obj-based interface, providing a generic interface, runtime, the ability to build in multiple drivers, and hardware description from the device tree. In contract, the resource...

enhancement

The way that the circular command history introduced in #10 works does not always show history in chronological order. Steps to reproduce: - Fill command history by entering number commands...

The code used to make system calls from the runtime is a mess and a big pain point when making OS-level changes in the runtime. Quick summary of some of...

NeedsInvestigation
compiler/runtime

Initially filed at https://github.com/golang/go/issues/52000 by @fumin. Moving here as this seems to be an issue in pprof. ### What version of Go are you using (`go version`)? $ go version...

type: bug
Priority: p2

https://perf.golang.org/dashboard/?benchmark=regressions is broken due to a panic in the handler: ``` 2022/09/19 21:52:14 http2: panic serving 10.102.129.129:15437: runtime error: index out of range [341] with length 341 goroutine 2971853 [running]:...

Builders
NeedsInvestigation

This is a feature request, not a bug. From my understanding of the design and [implementation](https://github.com/restic/restic/blob/master/internal/archiver/archiver.go#L762), the snapshot file is not created until all blobs and all trees are saved....

category: backup
type: discussion
misc: repo v2
type: feature suggestion

go_binary/go_library/etc have `gc_goopts` and `gc_linkopts` to set custom compiler and linker options, respectively. I propose adding a similar `gc_asmopts` for setting custom assembler options for any assembly files in the...

enhancement
help wanted
go

cmd/trace splits events into ~100MB chunks of JSON. When creating chunks, each chunk [includes the full stackFrames map](https://cs.opensource.google/go/go/+/master:src/cmd/trace/trace.go;l=346;drc=5d59fa143ae1d0d8fdcc677297ce58bbfc592111) for the entire trace, rather than limiting to just the stack frames...

NeedsInvestigation
compiler/runtime