mirror of
https://github.com/golang/go.git
synced 2025-05-29 03:11:26 +00:00
Implements OS interactions and memory management. For #58141 Co-authored-by: Richard Musiol <neelance@gmail.com> Co-authored-by: Achille Roussel <achille.roussel@gmail.com> Co-authored-by: Julien Fabre <ju.pryz@gmail.com> Co-authored-by: Evan Phoenix <evan@phx.io> Change-Id: I876e7b033090c2fe2d76d2535bb63d52efa36185 Reviewed-on: https://go-review.googlesource.com/c/go/+/479618 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org>
14 lines
457 B
Go
14 lines
457 B
Go
// Copyright 2018 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.
|
|
|
|
//go:build js
|
|
|
|
package runtime
|
|
|
|
// resetMemoryDataView signals the JS front-end that WebAssembly's memory.grow instruction has been used.
|
|
// This allows the front-end to replace the old DataView object with a new one.
|
|
//
|
|
//go:wasmimport gojs runtime.resetMemoryDataView
|
|
func resetMemoryDataView()
|