radare2/libr/th/TODO
pancake 37c3e25664 * RCore now depends on RThread
- Loads rabin2 information in a background thread
  - Prompt is now much more responsive
  - Fix segfault in null pointered var in RThread
* rabin2 load strings only from data sections if found
* Split r_core_prompt/exec (make it cooperative-thread-friendly)
2010-06-23 17:30:16 +02:00

22 lines
507 B
Plaintext

R_TH :: TODO
============
* implement non-threaded thread api (dummy one, when no support)
* test w32 port
* Implement a pure clone(2) backend
* Added a threading pool super-api
/* pools */
R_API void r_th_pool_init(struct r_th_pool_t *thp, int threads, int size)
{
/* TODO: use a thread pool to handle a list of 'size' tasks */
}
R_API struct r_th_pool_t *r_th_pool_new(int threads, int size)
{
struct r_th_pool_t *thp = R_NEW(struct r_th_pool_t);
r_th_pool_init(thp, threads, size);
return thp;
}