Mercurial > hg > beaglert
comparison include/BeagleRT.h @ 257:1606b50a58c6 aux_task_args
missing semicolon
author | Liam Donovan <l.b.donovan@qmul.ac.uk> |
---|---|
date | Sat, 07 May 2016 12:51:10 +0100 |
parents | 3e93d9793da3 |
children | 88cf310417cd |
comparison
equal
deleted
inserted
replaced
256:3e93d9793da3 | 257:1606b50a58c6 |
---|---|
578 * \param functionToCall Function which will run each time the auxiliary task is scheduled. | 578 * \param functionToCall Function which will run each time the auxiliary task is scheduled. |
579 * \param priority Xenomai priority level at which the task should run. | 579 * \param priority Xenomai priority level at which the task should run. |
580 * \param name Name for this task, which should be unique system-wide (no other running program should use this name). | 580 * \param name Name for this task, which should be unique system-wide (no other running program should use this name). |
581 */ | 581 */ |
582 AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void*), int priority, const char *name, void* args); | 582 AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void*), int priority, const char *name, void* args); |
583 AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void), int priority, const char *name) | 583 AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void), int priority, const char *name); |
584 | 584 |
585 /** | 585 /** |
586 * \brief Start an auxiliary task so that it can be run. | 586 * \brief Start an auxiliary task so that it can be run. |
587 * | 587 * |
588 * This function will start an auxiliary task but will NOT schedule it. | 588 * This function will start an auxiliary task but will NOT schedule it. |