radare2/libr/io
2015-12-04 00:21:06 +01:00
..
p Kill child if no perms to debug after spawn in OSX 2015-12-04 00:21:06 +01:00
t
buffer.c
cache.c Fix java build 2015-11-20 16:08:24 +01:00
desc.c
io.c Fix rabin2 -k crash 2015-11-24 10:17:24 +01:00
Jamroot
Makefile
map.c Get rid of _Bool 2015-12-01 12:39:12 +01:00
plugin.c
README
section.c fix aligned issue with S= 2015-10-15 21:57:08 +02:00
undo.c Fix #3474 2015-10-29 18:51:44 +01:00
undo.h
vio.c

RIO design
==========

rio api allows to seamlessly access to underlying IO backends
and define rules on top of it to act as an mmu.

What do io.va means?
--------------------
- obey sections

- Plugins 

Actions
-------
 - open
 - read
 - seek
 - write
 - close

Layers
------
 - cache    caches write ops and modifies reads
 - map      allows to map a certain file at a given offset
 - sections like maps, but provide more information for virtual addressing

Features
--------
 - undo
 - buffer
 - desc

fn read(io: IO) {
	ut64 offset;
	if io.offset
}