Test "/proc/PID/maps support add" on arm64.

Change-Id: I0585ae6257b5c0269760dd7f23ba75b83dd7ac2c
This commit is contained in:
Shiratori, Takehiro
2018-11-21 17:24:29 +09:00
committed by Masamichi Takagi
parent 9e57db5427
commit cf113d392a
5 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# Makefile COPYRIGHT FUJITSU LIMITED 2018
CC = gcc
TARGET = proc_maps
LDFLAGS =
all: $(TARGET)
proc_maps: proc_maps.c
$(CC) -o $@ $^ $(LDFLAGS)
test: all
./run.sh
clean:
rm -f $(TARGET)