aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/hashmap.c
AgeCommit message (Expand)Author
2011-10-18gc: add delete(m, x) but leave in m[x] = 0, false.Russ Cox
2011-10-17runtime: random offset for map iterationRuss Cox
2011-10-01runtime: fix map memory leakRuss Cox
2011-08-17gc: implement nil map supportRuss Cox
2011-07-24runtime: remove rnd calls that pass a second argument of 1Ian Lance Taylor
2011-04-18reflect: more efficient; cannot Set result of NewValue anymoreRuss Cox
2011-02-17runtime: descriptive panics for use of nil mapRuss Cox
2011-01-31runtime: generate Go defs for C types.Luuk van Dijk
2010-11-04runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almostRuss Cox
2010-10-06runtime: correct iteration of large map valuesRuss Cox
2010-05-19runtime: allow large map valuesRuss Cox
2010-05-01gc: be pickier about slice, chan, array, and map sizesRuss Cox
2010-04-01runtime: turn run time errors checks into panicsRuss Cox
2010-03-23maps access to a missing keyKen Thompson
2010-03-04cc: disallow ... argument unless NOSPLIT is set.Russ Cox
2010-01-25in C and asm, replace pkg·name with ·nameRuss Cox
2010-01-09runtime: check for preemption due to garbage collectionRuss Cox
2009-10-15rename sys functions to runtime,Russ Cox
2009-09-08pass Type* to makechan and makemap so thatRuss Cox
2009-08-25rename runtime internals to have modern names (array->slice etc)Rob Pike
2009-07-08reflection for mapsRuss Cox
2009-07-02move Structrnd to runtime.hRuss Cox
2009-06-30change alignment rules: roll receiver intoRuss Cox
2009-06-09mv src/lib to src/pkgRob Pike