VLC 4.0.0-dev
|
An executor can spawn several threads. More...
Data Fields | |
struct vlc_list | node |
Node of vlc_executor.threads list. | |
vlc_executor_t * | owner |
The executor owning the thread. | |
vlc_thread_t | thread |
The system thread. | |
struct vlc_runnable * | current_task |
The current task executed by the thread, NULL if none. | |
An executor can spawn several threads.
This structure contains the data specific to one thread.
struct vlc_runnable* vlc_executor_thread::current_task |
The current task executed by the thread, NULL if none.
struct vlc_list vlc_executor_thread::node |
Node of vlc_executor.threads list.
Referenced by vlc_executor_Delete().
vlc_executor_t* vlc_executor_thread::owner |
The executor owning the thread.
vlc_thread_t vlc_executor_thread::thread |
The system thread.