Mercurial > hg > beaglert
changeset 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 |
files | include/BeagleRT.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/include/BeagleRT.h Fri May 06 21:36:27 2016 +0100 +++ b/include/BeagleRT.h Sat May 07 12:51:10 2016 +0100 @@ -580,7 +580,7 @@ * \param name Name for this task, which should be unique system-wide (no other running program should use this name). */ AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void*), int priority, const char *name, void* args); -AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void), int priority, const char *name) +AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void), int priority, const char *name); /** * \brief Start an auxiliary task so that it can be run.