summaryrefslogtreecommitdiff
path: root/src/runtime/print.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-08-05 14:18:47 -0700
committerRuss Cox <rsc@golang.org>2008-08-05 14:18:47 -0700
commit22073cf478d373107801981f34c219a5399dfc13 (patch)
treed7949fdd33ae9f9b3c789cecabb6e4b5322c97e1 /src/runtime/print.c
parent7ad2e97fbea94e28e999a699e7d31af22dbfb370 (diff)
downloadgolang-22073cf478d373107801981f34c219a5399dfc13.tar.gz
* comment, clean up scheduler
* rewrite lock implementation to be correct (tip: never assume that an algorithm you found in a linux man page is correct.) * delete unneeded void* arg from clone fn * replace Rendez with Note * comment mal better * use 6c -w, fix warnings * mark all assembly functions 7 R=r DELTA=828 (338 added, 221 deleted, 269 changed) OCL=13884 CL=13886
Diffstat (limited to 'src/runtime/print.c')
-rw-r--r--src/runtime/print.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/runtime/print.c b/src/runtime/print.c
index 46ecda80d..a2bed1967 100644
--- a/src/runtime/print.c
+++ b/src/runtime/print.c
@@ -8,7 +8,6 @@
void
dump(byte *p, int32 n)
{
- uint32 v;
int32 i;
for(i=0; i<n; i++) {