@@ -85,7 +85,6 @@ class Thread {
85
85
86
86
/* * Create a new thread, and start it executing the specified function.
87
87
@param task function to be executed by this thread.
88
- @param argument pointer that is passed to the thread function as start argument. (default: NULL).
89
88
@param priority initial priority of the thread function. (default: osPriorityNormal).
90
89
@param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
91
90
@param stack_mem pointer to the stack area to be used by this thread (default: NULL).
@@ -112,9 +111,8 @@ class Thread {
112
111
}
113
112
114
113
/* * Create a new thread, and start it executing the specified function.
115
- @param obj argument to task.
116
- @param method function to be executed by this thread.
117
114
@param argument pointer that is passed to the thread function as start argument. (default: NULL).
115
+ @param task argument to task.
118
116
@param priority initial priority of the thread function. (default: osPriorityNormal).
119
117
@param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
120
118
@param stack_mem pointer to the stack area to be used by this thread (default: NULL).
@@ -143,9 +141,8 @@ class Thread {
143
141
}
144
142
145
143
/* * Create a new thread, and start it executing the specified function.
146
- @param obj argument to task.
147
- @param method function to be executed by this thread.
148
144
@param argument pointer that is passed to the thread function as start argument. (default: NULL).
145
+ @param task argument to task.
149
146
@param priority initial priority of the thread function. (default: osPriorityNormal).
150
147
@param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
151
148
@param stack_mem pointer to the stack area to be used by this thread (default: NULL).
0 commit comments