8 lines
108 B
MySQL
8 lines
108 B
MySQL
|
-- Returns the OS memory region map.
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
memory_map;
|