osquery-1/specs/linux/memory_map.table
Teddy Reed a105924804 Move specs to a top-level path, add query examples
1. Example queries will run with an (optional) integration test.
2. Fix bad accesses with OS X package BOMs
3. Move spec files from ./osquery/tables/specs to ./specs
4. Remove server parsers (netlib) from client builds.
2015-06-03 10:39:05 -07:00

10 lines
330 B
Plaintext

table_name("memory_map")
description("OS memory region map.")
schema([
Column("region", INTEGER, "Region index"),
Column("type", TEXT, "Textual description"),
Column("start", TEXT, "Start address of memory region"),
Column("end", TEXT, "End address of memory region"),
])
implementation("memory_map@genMemoryMap")