summaryrefslogtreecommitdiff
path: root/test/mallocrep1.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+143
2011-09-13Imported Upstream version 60Ondřej Surý1-138/+0
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-6/+12
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2010-03-24runtime: malloc sampling, pprof interfaceRuss Cox1-0/+1
R=r CC=golang-dev http://codereview.appspot.com/719041
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox1-46/+46
R=r, cw CC=golang-dev http://codereview.appspot.com/198085
2009-10-09time tests; sort -nr times.out | sed 10q is illuminating.Russ Cox1-2/+6
cut the slowest tests down from a few seconds to under half a second. R=r DELTA=21 (6 added, 1 deleted, 14 changed) OCL=35509 CL=35519
2009-09-15last round: non-package codeRuss Cox1-1/+1
R=r DELTA=127 (38 added, 3 deleted, 86 changed) OCL=34640 CL=34650
2009-06-05fix 386 malloc tests,Russ Cox1-7/+7
detect 386 darwin breakpoint line. R=r DELTA=22 (4 added, 0 deleted, 18 changed) OCL=29929 CL=29944
2009-01-20delete exportRuss Cox1-2/+2
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox1-11/+11
R=r OCL=23012 CL=23014
2009-01-16Change malloc.Lookup to return the size as uintptr rather thanIan Lance Taylor1-5/+5
uint64. This changes the Go code to be consistent with the C code. R=rsc DELTA=6 (0 added, 0 deleted, 6 changed) OCL=22983 CL=22987
2009-01-15convert strconvRuss Cox1-1/+1
R=r DELTA=568 (0 added, 9 deleted, 559 changed) OCL=22898 CL=22901
2009-01-15printf->Printf etc.Rob Pike1-3/+3
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
2009-01-09simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike1-11/+8
fixed everything except the tutorial. R=rsc DELTA=404 (94 added, 139 deleted, 171 changed) OCL=22414 CL=22422
2009-01-06new new & makeRuss Cox1-1/+1
R=r OCL=22166 CL=22166
2008-12-19[] and struct in interfaces.Russ Cox1-1/+1
other [] cleanup. convert() is gone. R=r DELTA=352 (144 added, 68 deleted, 140 changed) OCL=21660 CL=21662
2008-12-19malloc bug fixes.Russ Cox1-0/+130
use malloc by default. free stacks. R=r DELTA=424 (333 added, 29 deleted, 62 changed) OCL=21553 CL=21584