diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2016-12-06 16:26:01 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2016-12-06 16:26:01 +0100 |
| commit | a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc (patch) | |
| tree | 8fb1d9784d7903fe9e0f188440e52a35c2b0c644 /include/gensvm_queue.h | |
| parent | add msvmmaj matlab file to git (diff) | |
| download | gensvm-a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc.tar.gz gensvm-a1d164e6371eaf81a8aaf0be1e1a9b16a1af43fc.zip | |
document undocumented elements
Diffstat (limited to 'include/gensvm_queue.h')
| -rw-r--r-- | include/gensvm_queue.h | 5 |
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 |
