radare2/libr/io
2014-05-21 13:02:02 -05:00
..
p Fixed io_default/write crash and malfunction 2014-05-21 04:36:53 +02:00
t Purge all r_lib references 2014-02-20 22:16:23 +01:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix heap overflow in io/cache.c (Thanks @nixerr) 2014-04-25 03:03:17 +02:00
desc.c Fix lot of warnings 2014-04-28 11:53:22 +02:00
io.c Enhance performance with reduced mallocs at load time 2014-05-21 13:02:02 -05:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Fix statically link of libgdbr 2014-03-03 19:09:40 +01:00
map.c Steps toward fixing the reopen of a file being debugged 2014-04-24 18:21:40 -05:00
plugin.c Fix some gcc warnings 2014-05-08 23:20:42 +02:00
README More work to deprecate old cparse and use libr_tcc 2013-06-05 09:29:27 +02:00
section.c Fix loading sections from fatmach0 bins 2014-05-16 03:48:57 +02: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
}