From d4d94c97c29dc39b14476b2b36b12512eb44f03d Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Sat, 1 Aug 2020 11:37:26 +0100 Subject: [PATCH] process.h: Minimal document of kthreads_show/hide. --- src/bin/system/process.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/bin/system/process.h b/src/bin/system/process.h index de69205..184a509 100644 --- a/src/bin/system/process.h +++ b/src/bin/system/process.h @@ -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);