Riccardo Schirone 3a96e51b3a Fix leak in RIO: free iter after removing it from list
ls_append/ls_prepend will create a new iter, so we need to free the
iter that was removed from the list.
2019-03-05 00:20:46 +01:00
..
2019-01-31 10:53:34 -06:00
2018-09-13 17:52:00 +00:00
2019-01-31 10:53:34 -06:00
2019-02-14 18:07:08 +01:00
2019-01-31 10:53:34 -06:00
2019-01-31 10:53:34 -06:00
2019-01-31 10:53:34 -06:00

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
}