Expand dump-functions for excluding user/unused memory (This is rebase commit for merging to development)
This commit is contained in:
committed by
Ken Sato
parent
325082a571
commit
a05b6e1ba8
14
test/dump/mcexec_test_proc/memtest_used_destroy.c
Normal file
14
test/dump/mcexec_test_proc/memtest_used_destroy.c
Normal file
@ -0,0 +1,14 @@
|
||||
#include <stdio.h>
|
||||
#define _GNU_SOURCE
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
|
||||
main() {
|
||||
|
||||
int rst = 0;
|
||||
|
||||
rst = syscall(901);
|
||||
printf("usedmem_destroy result:%d\n",rst);
|
||||
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user