aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_queue.h
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2016-12-06 16:26:01 +0100
committerGertjan van den Burg <burg@ese.eur.nl>2016-12-06 16:26:01 +0100
commita1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc (patch)
tree8fb1d9784d7903fe9e0f188440e52a35c2b0c644 /include/gensvm_queue.h
parentadd msvmmaj matlab file to git (diff)
downloadgensvm-a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc.tar.gz
gensvm-a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc.zip
document undocumented elements
Diffstat (limited to 'include/gensvm_queue.h')
-rw-r--r--include/gensvm_queue.h5
1 files changed, 4 insertions, 1 deletions
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