Changeset fdcb2b52 in rtems
- Timestamp:
- 06/14/00 13:38:47 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e90e428
- Parents:
- caacc739
- Files:
-
- 20 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/include/rtems/score/object.h
rcaacc739 rfdcb2b52 445 445 446 446 /* 447 * _Objects_Get_by_index448 *449 * DESCRIPTION:450 *451 * This routine sets the object pointer for the given452 * object id based on the given object information structure.453 */454 455 Objects_Control *_Objects_Get_by_index(456 Objects_Information *information,457 unsigned32 index,458 Objects_Locations *location459 );460 461 /*462 447 * _Objects_Get_next 463 448 * … … 476 461 477 462 /* 478 * _Objects_Local_iterate479 *480 * DESCRIPTION:481 *482 * This function invokes the callback function for each existing object483 * of the type specified by the information block pointer. Iteration484 * continues until either all objects have been processed, or, if485 * break_on_error is TRUE, until an invocation of the callback returns486 * something other than 0.487 */488 489 unsigned32 _Objects_Local_iterate(490 Objects_Information *information,491 unsigned32 (*callback)(Objects_Control *object, void * arg),492 void * arg,493 boolean break_on_error494 );495 496 /*497 463 * Pieces of object.inl are promoted out to the user 498 464 */ -
c/src/exec/score/include/rtems/score/thread.h
rcaacc739 rfdcb2b52 735 735 736 736 /* 737 * _Thread_Local_iterate738 *739 * DESCRIPTION:740 *741 * This function invokes the callback function for each existing thread.742 * Iteration continues until either all threads have been processed, or,743 * if break_on_error is TRUE, until an invocation of the callback returns744 * an integer value other than 0.745 */746 747 unsigned32 _Thread_Local_iterate(748 unsigned32 (*callback)(Thread_Control *the_thread, void * arg),749 void * arg,750 boolean break_on_error751 );752 753 /*754 737 * _Thread_Idle_body 755 738 * -
c/src/exec/score/src/Makefile.am
rcaacc739 rfdcb2b52 28 28 objectcopynameraw.c objectcopynamestring.c objectextendinformation.c \ 29 29 objectfree.c objectget.c objectgetbyindex.c objectgetnext.c \ 30 objectinitializeinformation.c objectlocaliterate.c objectnametoid.c \ 31 objectshrinkinformation.c 30 objectinitializeinformation.c objectnametoid.c objectshrinkinformation.c 32 31 33 32 THREAD_C_FILES = thread.c threadchangepriority.c threadclearstate.c \ 34 33 threadclose.c threadcreateidle.c threaddelayended.c threaddispatch.c \ 35 34 threadevaluatemode.c threadget.c threadhandler.c threadidlebody.c \ 36 threadinitialize.c threadloadenv.c thread localiterate.c threadready.c \37 threadreset timeslice.c threadreset.c threadrestart.c threadresume.c \38 thread rotatequeue.c threadsetpriority.c threadsetstate.c \39 threads ettransient.c threadstackallocate.c threadstackfree.c \40 threadstart .c threadstartmultitasking.c threadsuspend.c \41 thread tickletimeslice.c threadyieldprocessor.c35 threadinitialize.c threadloadenv.c threadready.c threadresettimeslice.c \ 36 threadreset.c threadrestart.c threadresume.c threadrotatequeue.c \ 37 threadsetpriority.c threadsetstate.c threadsettransient.c \ 38 threadstackallocate.c threadstackfree.c threadstart.c \ 39 threadstartmultitasking.c threadsuspend.c threadtickletimeslice.c \ 40 threadyieldprocessor.c 42 41 43 42 THREADQ_C_FILES = threadq.c threadqdequeue.c threadqdequeuefifo.c \ … … 55 54 56 55 STD_C_FILES = apiext.c chain.c $(CORE_MESSAGE_QUEUE_C_FILES) \ 57 $(CORE_MUTEX_C_FILES) $(CORE_SEMAPHORE_C_FILES) $(HEAP_C_FILES) \58 i nterr.c isr.c $(OBJECT_C_FILES) $(THREAD_C_FILES) $(THREADQ_C_FILES) \56 $(CORE_MUTEX_C_FILES) $(CORE_SEMAPHORE_C_FILES) $(HEAP_C_FILES) interr.c \ 57 isr.c $(OBJECT_C_FILES) $(THREAD_C_FILES) $(THREADQ_C_FILES) \ 59 58 $(TOD_C_FILES) userext.c $(WATCHDOG_C_FILES) wkspace.c 60 59 -
c/src/tests/configure.in
rcaacc739 rfdcb2b52 45 45 if test "$tests_enabled" = "yes"; then 46 46 # do functionality tests first, then performance tests 47 cfg_subdirs="libtests sptests libffi"47 cfg_subdirs="libtests sptests" 48 48 if test "$HAS_MP" = "yes"; then 49 49 cfg_subdirs="$cfg_subdirs mptests" -
c/src/tests/sptests/configure.in
rcaacc739 rfdcb2b52 68 68 sp29/Makefile 69 69 spsize/Makefile 70 threaditerate/Makefile71 70 ) 72 71 -
cpukit/score/include/rtems/score/object.h
rcaacc739 rfdcb2b52 445 445 446 446 /* 447 * _Objects_Get_by_index448 *449 * DESCRIPTION:450 *451 * This routine sets the object pointer for the given452 * object id based on the given object information structure.453 */454 455 Objects_Control *_Objects_Get_by_index(456 Objects_Information *information,457 unsigned32 index,458 Objects_Locations *location459 );460 461 /*462 447 * _Objects_Get_next 463 448 * … … 476 461 477 462 /* 478 * _Objects_Local_iterate479 *480 * DESCRIPTION:481 *482 * This function invokes the callback function for each existing object483 * of the type specified by the information block pointer. Iteration484 * continues until either all objects have been processed, or, if485 * break_on_error is TRUE, until an invocation of the callback returns486 * something other than 0.487 */488 489 unsigned32 _Objects_Local_iterate(490 Objects_Information *information,491 unsigned32 (*callback)(Objects_Control *object, void * arg),492 void * arg,493 boolean break_on_error494 );495 496 /*497 463 * Pieces of object.inl are promoted out to the user 498 464 */ -
cpukit/score/include/rtems/score/thread.h
rcaacc739 rfdcb2b52 735 735 736 736 /* 737 * _Thread_Local_iterate738 *739 * DESCRIPTION:740 *741 * This function invokes the callback function for each existing thread.742 * Iteration continues until either all threads have been processed, or,743 * if break_on_error is TRUE, until an invocation of the callback returns744 * an integer value other than 0.745 */746 747 unsigned32 _Thread_Local_iterate(748 unsigned32 (*callback)(Thread_Control *the_thread, void * arg),749 void * arg,750 boolean break_on_error751 );752 753 /*754 737 * _Thread_Idle_body 755 738 * -
cpukit/score/src/Makefile.am
rcaacc739 rfdcb2b52 28 28 objectcopynameraw.c objectcopynamestring.c objectextendinformation.c \ 29 29 objectfree.c objectget.c objectgetbyindex.c objectgetnext.c \ 30 objectinitializeinformation.c objectlocaliterate.c objectnametoid.c \ 31 objectshrinkinformation.c 30 objectinitializeinformation.c objectnametoid.c objectshrinkinformation.c 32 31 33 32 THREAD_C_FILES = thread.c threadchangepriority.c threadclearstate.c \ 34 33 threadclose.c threadcreateidle.c threaddelayended.c threaddispatch.c \ 35 34 threadevaluatemode.c threadget.c threadhandler.c threadidlebody.c \ 36 threadinitialize.c threadloadenv.c thread localiterate.c threadready.c \37 threadreset timeslice.c threadreset.c threadrestart.c threadresume.c \38 thread rotatequeue.c threadsetpriority.c threadsetstate.c \39 threads ettransient.c threadstackallocate.c threadstackfree.c \40 threadstart .c threadstartmultitasking.c threadsuspend.c \41 thread tickletimeslice.c threadyieldprocessor.c35 threadinitialize.c threadloadenv.c threadready.c threadresettimeslice.c \ 36 threadreset.c threadrestart.c threadresume.c threadrotatequeue.c \ 37 threadsetpriority.c threadsetstate.c threadsettransient.c \ 38 threadstackallocate.c threadstackfree.c threadstart.c \ 39 threadstartmultitasking.c threadsuspend.c threadtickletimeslice.c \ 40 threadyieldprocessor.c 42 41 43 42 THREADQ_C_FILES = threadq.c threadqdequeue.c threadqdequeuefifo.c \ … … 55 54 56 55 STD_C_FILES = apiext.c chain.c $(CORE_MESSAGE_QUEUE_C_FILES) \ 57 $(CORE_MUTEX_C_FILES) $(CORE_SEMAPHORE_C_FILES) $(HEAP_C_FILES) \58 i nterr.c isr.c $(OBJECT_C_FILES) $(THREAD_C_FILES) $(THREADQ_C_FILES) \56 $(CORE_MUTEX_C_FILES) $(CORE_SEMAPHORE_C_FILES) $(HEAP_C_FILES) interr.c \ 57 isr.c $(OBJECT_C_FILES) $(THREAD_C_FILES) $(THREADQ_C_FILES) \ 59 58 $(TOD_C_FILES) userext.c $(WATCHDOG_C_FILES) wkspace.c 60 59
Note: See TracChangeset
for help on using the changeset viewer.