summaryrefslogtreecommitdiff
path: root/src/runtime/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-28 15:22:16 -0800
committerRuss Cox <rsc@golang.org>2009-01-28 15:22:16 -0800
commit9f726c2c8ba98d55935acc1143d2b792ca74e303 (patch)
treeca165b4900d9d103778758fd1058a85d4658a235 /src/runtime/Makefile
parentcb659ece0e9a74dd330d774552a1f26c4a4d4ee3 (diff)
downloadgo-git-9f726c2c8ba98d55935acc1143d2b792ca74e303.tar.gz
Use explicit allspan list instead of
trying to find all the places where spans might be recorded. Free can cascade into complicated span manipulations that move them from list to list; the old code had the possibility of accidentally processing a span twice or jumping to a different list, causing an infinite loop. R=r DELTA=70 (28 added, 25 deleted, 17 changed) OCL=23704 CL=23710
Diffstat (limited to 'src/runtime/Makefile')
-rw-r--r--src/runtime/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/Makefile b/src/runtime/Makefile
index e9c895ab60..468a5eb325 100644
--- a/src/runtime/Makefile
+++ b/src/runtime/Makefile
@@ -43,7 +43,7 @@ LIBOFILES=\
OFILES=$(RT0OFILES) $(LIBOFILES)
OS_H=$(GOARCH)_$(GOOS).h
-HFILES=runtime.h hashmap.h $(OS_H_)
+HFILES=runtime.h hashmap.h malloc.h $(OS_H_)
install: rt0 $(LIB) runtime.acid
cp $(RT0OFILES) $(GOROOT)/lib