diff options
| author | Russ Cox <rsc@golang.org> | 2009-05-26 17:13:39 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-05-26 17:13:39 -0700 |
| commit | 5273868f6748bd5cba2eb01efc599994b7d068b0 (patch) | |
| tree | c168645dd3cc7ee786eac885a0072a0a13299a52 /src/runtime/proc.c | |
| parent | 51ddddc67e406db9960135a503f42cb653734289 (diff) | |
| download | go-5273868f6748bd5cba2eb01efc599994b7d068b0.tar.xz | |
32-bit stack switching bug fix
R=ken
OCL=29412
CL=29412
Diffstat (limited to 'src/runtime/proc.c')
| -rw-r--r-- | src/runtime/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/proc.c b/src/runtime/proc.c index d52adf94c0..d51a6c013e 100644 --- a/src/runtime/proc.c +++ b/src/runtime/proc.c @@ -705,7 +705,7 @@ newstack(void) #pragma textflag 7 void -sys·morestack(uint64 u) +sys·morestack(uintptr u) { while(g == m->g0) { // very bad news |
