radare2/libr/io
2014-01-14 03:23:03 +01:00
..
p Fix debugger for Debian Squeeze 2014-01-14 03:23:03 +01:00
t Fix android build and add r_core->anal_define api 2012-09-03 01:27:52 +02:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix mingw32 build of libzip 2013-11-15 01:25:34 +01:00
desc.c Fix #389 - Fix segfault in ptrace://-1 2013-11-26 16:16:06 +01:00
io.c Improved plugin analysis allowing plugin developers to define custom 2014-01-03 00:28:46 +01:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Fix build 2013-12-22 04:37:05 +01:00
map.c More work to make zip plugin work 2013-11-14 23:22:56 +01:00
plugin.c Add px[QW], fix segmented io and handle ! pipes 2012-10-25 12:55:28 +02:00
README More work to deprecate old cparse and use libr_tcc 2013-06-05 09:29:27 +02:00
section.c Fix #458 - Negative baddr 2013-12-19 19:43:44 +01:00
undo.c Try to fix #168 rlang's python plugin not properly linked 2013-08-18 01:30:03 +02:00
undo.h

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

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

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
}