Neven Sajko 44ecf2f01b Do not hardcode 9 for SIGKILL (#11299)
Changes 9 with SIGKILL as 'kill' operand.
2018-08-29 18:18:14 +02:00
..
2018-08-29 18:18:14 +02:00
2018-08-19 16:39:55 +02:00
2017-09-01 01:10:32 +00:00
2018-08-27 00:51:44 +02:00
2018-08-27 00:51:44 +02:00
2018-08-26 02:02:02 +02:00
2018-08-27 00:51:44 +02:00
2018-06-15 01:20:39 +02:00
2018-05-31 23:53:54 +00:00
2017-07-20 14:50:13 +02: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
}