README ¶ memmap Parse linux /proc/iomem and /proc/ioports (and anything with similar orginazation) into tree-oriented data structures. © 2015-2016 Platina Systems, Inc. All rights reserved. Use of this source code is governed by this BSD-style LICENSE. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type Range func (r Range) String() string type Region func (r Region) String() string type RegionMap func FileToMap(s string) (regionMap RegionMap, err error) func ReaderToMap(r io.Reader) (regionMap RegionMap, err error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Range ¶ type Range struct { Start uintptr End uintptr } func (Range) String ¶ func (r Range) String() string type Region ¶ type Region struct { What string Ranges []*Range } func (Region) String ¶ func (r Region) String() string type RegionMap ¶ type RegionMap map[string]Region func FileToMap ¶ func FileToMap(s string) (regionMap RegionMap, err error) func ReaderToMap ¶ func ReaderToMap(r io.Reader) (regionMap RegionMap, err error) Source Files ¶ View all Source files memmap.go Click to show internal directories. Click to hide internal directories.