mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 12:12:06 +00:00
37c3e25664
- 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)
22 lines
507 B
Plaintext
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;
|
|
}
|