summaryrefslogtreecommitdiff
path: root/src/runtime/stack2.go
Commit message (Collapse)AuthorAgeFilesLines
* [dev.garbage] runtime: raise StackGuard limit for Windows (again)dev.garbageRuss Cox2014-12-051-1/+1
| | | | | | | | | | 640 bytes ought to be enough for anybody. We'll bring this back down before Go 1.5. That's issue 9214. TBR=rlh CC=golang-codereviews https://codereview.appspot.com/188730043
* [dev.cc] runtime: generate GOOS- and GOARCH-specific files with go generateRuss Cox2014-11-181-1/+1
| | | | | | | | | | | | | | | | | Eventually I'd like almost everything cmd/dist generates to be done with 'go generate' and checked in, to simplify the bootstrap process. The only thing cmd/dist really needs to do is write things like the current experiment info and the current version. This is a first step toward that. It replaces the _NaCl etc constants with generated ones goos_nacl, goos_darwin, goarch_386, and so on. LGTM=dave, austin R=austin, dave, bradfitz CC=golang-codereviews, iant, r https://codereview.appspot.com/174290043
* [dev.cc] runtime: convert panic and stack code from C to GoRuss Cox2014-11-111-0/+106
The conversion was done with an automated tool and then modified only as necessary to make it compile and run. [This CL is part of the removal of C code from package runtime. See golang.org/s/dev.cc for an overview.] LGTM=r R=r, dave CC=austin, dvyukov, golang-codereviews, iant, khr https://codereview.appspot.com/166520043