From a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 6 Dec 2016 16:26:01 +0100 Subject: document undocumented elements --- include/gensvm_queue.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/gensvm_queue.h') diff --git a/include/gensvm_queue.h b/include/gensvm_queue.h index f8faa87..c680ebf 100644 --- a/include/gensvm_queue.h +++ b/include/gensvm_queue.h @@ -40,14 +40,17 @@ * This struct is basically just an array of pointers to Task instances, * with a length and an index of the current task. * - * @param **tasks array of pointers to Task structs + * @param tasks array of pointers to Task structs * @param N size of task array * @param i index used for keeping track of the queue */ struct GenQueue { struct GenTask **tasks; + ///< array of pointers to Task structs long N; + ///< size of task array long i; + ///< index used for keeping track of the queue }; // function declarations -- cgit v1.2.3