Changeset ccd5434 in rtems for cpukit/score/include/rtems/score/threadimpl.h
- Timestamp:
- 01/07/16 08:55:45 (7 years ago)
- Branches:
- 5, master
- Children:
- 1506658c
- Parents:
- 3d1becf
- git-author:
- Sebastian Huber <sebastian.huber@…> (01/07/16 08:55:45)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (01/11/16 07:47:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/include/rtems/score/threadimpl.h
r3d1becf rccd5434 186 186 * thread competes with all other threads for CPU time. 187 187 * 188 * @param the_thread is the thread to be initialized 189 * @param the_prototype 190 * @param entry_point 191 * @param pointer_argument 192 * @param numeric_argument 188 * @param the_thread The thread to be started. 189 * @param entry The thread entry information. 193 190 * @param[in,out] cpu The processor if used to start an idle thread 194 191 * during system initialization. Must be set to @c NULL to start a normal … … 196 193 */ 197 194 bool _Thread_Start( 198 Thread_Control *the_thread, 199 Thread_Start_types the_prototype, 200 void *entry_point, 201 void *pointer_argument, 202 Thread_Entry_numeric_type numeric_argument, 203 Per_CPU_Control *cpu 195 Thread_Control *the_thread, 196 const Thread_Entry_information *entry, 197 Per_CPU_Control *cpu 204 198 ); 205 199 206 200 bool _Thread_Restart( 207 Thread_Control *the_thread, 208 Thread_Control *executing, 209 void *pointer_argument, 210 Thread_Entry_numeric_type numeric_argument 201 Thread_Control *the_thread, 202 Thread_Control *executing, 203 const Thread_Entry_information *entry 211 204 ); 212 205 … … 301 294 ); 302 295 296 void _Thread_Entry_adaptor_idle( Thread_Control *executing ); 297 298 void _Thread_Entry_adaptor_numeric( Thread_Control *executing ); 299 300 void _Thread_Entry_adaptor_pointer( Thread_Control *executing ); 301 303 302 /** 304 303 * @brief Wrapper function for all threads. … … 326 325 * are present. 327 326 */ 328 void _Thread_Global_construction( Thread_Entry entry_point ) RTEMS_NO_RETURN; 327 void _Thread_Global_construction( 328 Thread_Control *executing, 329 const Thread_Entry_information *entry 330 ) RTEMS_NO_RETURN; 329 331 330 332 /**
Note: See TracChangeset
for help on using the changeset viewer.