dfgh
Fork of mbed-rtos by
Revision 73:4eac1694134a, committed 2017-01-25
- Comitter:
- riyood
- Date:
- Wed Jan 25 22:08:10 2017 +0000
- Parent:
- 72:83895f30f8f2
- Commit message:
- last version;
Changed in this revision
rtos/Thread.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 83895f30f8f2 -r 4eac1694134a rtos/Thread.h --- a/rtos/Thread.h Fri Apr 10 07:16:43 2015 +0100 +++ b/rtos/Thread.h Wed Jan 25 22:08:10 2017 +0000 @@ -37,7 +37,8 @@ @param stack_size stack size (in bytes) requirements for the thread function. (default: DEFAULT_STACK_SIZE). @param stack_pointer pointer to the stack area to be used by this thread (default: NULL). */ - Thread(void (*task)(void const *argument), void *argument=NULL, + Thread(void (*task)(void const *argument), + void *argument=NULL, osPriority priority=osPriorityNormal, uint32_t stack_size=DEFAULT_STACK_SIZE, unsigned char *stack_pointer=NULL);