diff options
author | Russ Cox <rsc@golang.org> | 2008-08-05 14:18:47 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2008-08-05 14:18:47 -0700 |
commit | 22073cf478d373107801981f34c219a5399dfc13 (patch) | |
tree | d7949fdd33ae9f9b3c789cecabb6e4b5322c97e1 /src/runtime/print.c | |
parent | 7ad2e97fbea94e28e999a699e7d31af22dbfb370 (diff) | |
download | golang-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.c | 1 |
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++) { |