diff options
Diffstat (limited to 'src/pkg/runtime/slice.c')
| -rw-r--r-- | src/pkg/runtime/slice.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/pkg/runtime/slice.c b/src/pkg/runtime/slice.c new file mode 100644 index 0000000000..5483a2084d --- /dev/null +++ b/src/pkg/runtime/slice.c @@ -0,0 +1,27 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +#include "runtime.h" +#include "arch_GOARCH.h" + +void +runtime·printslice_m(G *gp) +{ + void *array; + uintptr len, cap; + + array = g->m->ptrarg[0]; + g->m->ptrarg[0] = nil; + len = g->m->scalararg[0]; + cap = g->m->scalararg[1]; + + runtime·prints("["); + runtime·printint(len); + runtime·prints("/"); + runtime·printint(cap); + runtime·prints("]"); + runtime·printpointer(array); + + runtime·gogo(&gp->sched); +} |
