aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.h
AgeCommit message (Expand)Author
2008-12-15check printf format stringsRuss Cox
2008-12-09chans and maps of interfacesRuss Cox
2008-12-05add support for ref counts to memory allocator.Russ Cox
2008-12-04add stub routines stackalloc() and stackfree().Russ Cox
2008-12-03preparation for exec.Russ Cox
2008-11-25change meaning of $GOMAXPROCS to number of cpus to use,Russ Cox
2008-11-25use pc/ln table to print source lines in tracebackRuss Cox
2008-11-23delete stack mark stringsRuss Cox
2008-11-17First pieces of malloc.Russ Cox
2008-11-13mike's map codeKen Thompson
2008-11-10handle Inf, NaN in float printRuss Cox
2008-11-05select defaultKen Thompson
2008-10-07sys.stringtorune doesn't need a length parameter.Rob Pike
2008-09-26go/acid/goRuss Cox
2008-09-24get rid of per-G Note, avoids per-G kernel semaphore on Mac.Russ Cox
2008-09-24only use mach kernel semaphores for actual contention.Russ Cox
2008-09-22test cleanupRuss Cox
2008-09-22now method/interface codeKen Thompson
2008-09-18proper handling of signals.Russ Cox
2008-09-12fix up linux trap handling - INTB 5 gives SEGVRob Pike
2008-09-12fix silly portability bugRob Pike
2008-09-12- catch trace trapsRob Pike
2008-09-09go threads for OS XRuss Cox
2008-08-27arraysKen Thompson
2008-08-05kill trailing white space.Russ Cox
2008-08-05* comment, clean up schedulerRuss Cox
2008-08-04first cut at multithreading. works on Linux.Russ Cox
2008-07-28print tracebacks for all goroutines, not just the crashing oneRob Pike
2008-07-25selectKen Thompson
2008-07-24selectKen Thompson
2008-07-20start of selectKen Thompson
2008-07-16new (more fifo) schedulint algorithmKen Thompson
2008-07-14add sys.writefile; support for darwin only in this CLRob Pike
2008-07-14synch chanKen Thompson
2008-07-13chanKen Thompson
2008-07-12preserve AX across stack jump so C routines return correct value when trigger...Rob Pike
2008-07-11segmented stacks AND goroutinesKen Thompson
2008-07-09defined external registers g and mKen Thompson
2008-07-08unique import/export namesKen Thompson
2008-07-08add bytestorune and stringtorune to sys.Rob Pike
2008-07-07update to Unicode 5Rob Pike
2008-06-30makes stack traces work for segmented stacksRob Pike
2008-06-30Break runtime.c into separate pieces for maps, strings, print, etc.Rob Pike
2008-06-26add sys.readfile()Rob Pike
2008-06-24middle dot as alpha package separatorKen Thompson
2008-06-24string nil same as string ""Ken Thompson
2008-06-21add signal handling and traceback support therein.Rob Pike
2008-06-16mapsKen Thompson
2008-06-16print pc on faultsRob Pike
2008-06-15now checks for lvalue/rvalue context ofKen Thompson