go outbuf_nommap 源码
golang outbuf_nommap 代码
文件路径:/src/cmd/link/internal/ld/outbuf_nommap.go
// Copyright 2019 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !windows
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!windows
package ld
// Mmap allocates an in-heap output buffer with the given size. It copies
// any old data (if any) to the new buffer.
func (out *OutBuf) Mmap(filesize uint64) error {
// We need space to put all the symbols before we apply relocations.
oldheap := out.heap
if filesize < uint64(len(oldheap)) {
panic("mmap size too small")
}
out.heap = make([]byte, filesize)
copy(out.heap, oldheap)
return nil
}
func (out *OutBuf) munmap() { panic("unreachable") }
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦