Changeset 3f727f98 in rtems
- Timestamp:
- Sep 26, 2009, 4:17:00 PM (10 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- 288cebb
- Parents:
- 609e0582
- Location:
- cpukit
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r609e0582 r3f727f98 1 2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libmisc/capture/capture.c, posix/src/pthread.c, rtems/src/tasks.c, 4 score/include/rtems/score/userext.h: Eliminate use of deprecated 5 rtems_extension. Re-add prototype for _User_extensions_Add_API_set. 6 1 7 2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com> 2 8 -
cpukit/libmisc/capture/capture.c
r609e0582 r3f727f98 8 8 Chris Johns (ccj@acm.org) 9 9 10 COPYRIGHT (c) 1989-200 8.10 COPYRIGHT (c) 1989-2009. 11 11 On-Line Applications Research Corporation (OAR). 12 12 … … 688 688 * 689 689 */ 690 static rtems_extension690 static void 691 691 rtems_capture_start_task (rtems_tcb* current_task, 692 692 rtems_tcb* started_task) … … 730 730 * 731 731 */ 732 static rtems_extension732 static void 733 733 rtems_capture_restart_task (rtems_tcb* current_task, 734 734 rtems_tcb* restarted_task) … … 773 773 * 774 774 */ 775 static rtems_extension775 static void 776 776 rtems_capture_delete_task (rtems_tcb* current_task, 777 777 rtems_tcb* deleted_task) … … 823 823 * 824 824 */ 825 static rtems_extension825 static void 826 826 rtems_capture_begin_task (rtems_tcb* begin_task) 827 827 { … … 855 855 * 856 856 */ 857 static rtems_extension857 static void 858 858 rtems_capture_exitted_task (rtems_tcb* exitted_task) 859 859 { … … 888 888 * 889 889 */ 890 static rtems_extension890 static void 891 891 rtems_capture_switch_task (rtems_tcb* current_task, 892 892 rtems_tcb* heir_task) -
cpukit/posix/src/pthread.c
r609e0582 r3f727f98 229 229 * This method is invoked for each thread deleted. 230 230 */ 231 User_extensions_routine_POSIX_Threads_Delete_extension(231 void _POSIX_Threads_Delete_extension( 232 232 Thread_Control *executing __attribute__((unused)), 233 233 Thread_Control *deleted … … 271 271 * This method is invoked each time a thread exits. 272 272 */ 273 User_extensions_routine_POSIX_Threads_Exitted_extension(273 void _POSIX_Threads_Exitted_extension( 274 274 Thread_Control *executing 275 275 ) -
cpukit/rtems/src/tasks.c
r609e0582 r3f727f98 2 2 * RTEMS Task Manager -- Initialize Manager 3 3 * 4 * COPYRIGHT (c) 1989-200 8.4 * COPYRIGHT (c) 1989-2009. 5 5 * On-Line Applications Research Corporation (OAR). 6 6 * … … 89 89 */ 90 90 91 User_extensions_routine_RTEMS_tasks_Start_extension(91 void _RTEMS_tasks_Start_extension( 92 92 Thread_Control *executing, 93 93 Thread_Control *started … … 108 108 */ 109 109 110 User_extensions_routine_RTEMS_tasks_Delete_extension(110 void _RTEMS_tasks_Delete_extension( 111 111 Thread_Control *executing, 112 112 Thread_Control *deleted -
cpukit/score/include/rtems/score/userext.h
r609e0582 r3f727f98 8 8 9 9 /* 10 * COPYRIGHT (c) 1989-200 8.10 * COPYRIGHT (c) 1989-2009. 11 11 * On-Line Applications Research Corporation (OAR). 12 12 * … … 247 247 ); 248 248 249 /** @brief User extensions Add to API extension set 250 * 251 * This routine is used to add an API extension set to the active list. 252 * 253 * @param[in] the_extension is the extension set to add 254 */ 255 void _User_extensions_Add_API_set ( 256 User_extensions_Control *the_extension 257 ); 258 249 259 RTEMS_INLINE_ROUTINE void _User_extensions_Add_set_with_table( 250 260 User_extensions_Control *extension,
Note: See TracChangeset
for help on using the changeset viewer.