mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
39a8c23740
* Added C! command that calls r_meta_sync() - put xref information inside function metaitems - reduces cpu usage - Fix some memory leaks - Add object lifecycle for r_list_item_t - Use RList instead of list.h * Apply patch from edu fixing '+' key in visual (Thanks!) * Fix segfault in osx printf ("%s", NULL) using r_str_get() |
||
---|---|---|
.. | ||
p | ||
t | ||
cache.c | ||
desc.c | ||
io.c | ||
Makefile | ||
map.c | ||
plugin.c | ||
README | ||
section.c | ||
undo.c | ||
undo.h |
R_IO ==== IO - manages basic IO DESC - file descriptor (stores seek, io_handler, ..) HANDLE - determines io backend by io plugins SECTION - allows virtual base addressing over the IO MAP - allows virtual maps at random address // TODO: - Can share storage UNDO - records all write ops allowing undo, redo, reset operations r_io_undo_* CACHE - caches write operations to emulate fake reads r_io_cache_* ------------------------------------------- NOTES: each plugin handle must provide a 'optimal' read size.. or io must be configured to this var io = new Radare.Io(); int fd = io.open("/bin/ls"); foreach (Io.Plugin handle in io.handle_list()) { stdout.printf(" %s\n", handle.name); }