-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathmmap.go
44 lines (38 loc) · 1.08 KB
/
mmap.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"fmt"
"log"
"os"
"os/exec"
"strconv"
"syscall"
)
const (
ALLOC_SIZE = 1024 * 1024 * 1024
)
func main() {
pid := os.Getpid()
fmt.Println("*** 新規メモリ領域獲得前のメモリマップ ***")
command := exec.Command("cat", "/proc/"+strconv.Itoa(pid)+"/maps")
command.Stdout = os.Stdout
err := command.Run()
if err != nil {
log.Fatal("catの実行に失敗しました")
}
// mmap()システムコールの呼び出しによって1GBのメモリ領域を獲得
data, err := syscall.Mmap(-1, 0, ALLOC_SIZE, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_ANON|syscall.MAP_PRIVATE)
if err != nil {
log.Fatal("mmap()に失敗しました")
}
fmt.Println("")
fmt.Printf("*** 新規メモリ領域: アドレス = 0x%p, サイズ = 0x%x ***\n",
&data[0], ALLOC_SIZE)
fmt.Println("")
fmt.Println("*** 新規メモリ領域獲得後のメモリマップ ***")
command = exec.Command("cat", "/proc/"+strconv.Itoa(pid)+"/maps")
command.Stdout = os.Stdout
err = command.Run()
if err != nil {
log.Fatal("catの実行に失敗しました")
}
}