process.h: Minimal document of kthreads_show/hide.

This commit is contained in:
Alastair Poole 2020-08-01 11:37:26 +01:00
parent 305ba225e4
commit d4d94c97c2
1 changed files with 10 additions and 0 deletions

View File

@ -77,9 +77,19 @@ void
proc_info_free(Proc_Info *proc);
/**
* Enable or disable the listing of kernel threads.
*
* @param enabled Boolean true or false (show/hide).
*/
void
proc_info_kthreads_show_set(Eina_Bool enabled);
/**
* Return the current policy for listing kernel threads.
*
* @return True or false (enabled/disabled).
*/
Eina_Bool
proc_info_kthreads_show_get(void);