- Timestamp:
- 08/16/95 19:42:41 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 199fa36
- Parents:
- 7285a016
- Location:
- cpukit
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/rtems/include/rtems/rtems/eventmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * eventmp.h,v 1.2 1995/05/31 16:46:25 joel Exp 15 15 */ 16 16 … … 35 35 typedef enum { 36 36 EVENT_MP_SEND_REQUEST = 0, 37 EVENT_MP_SEND_RESPONSE = 1 ,37 EVENT_MP_SEND_RESPONSE = 1 38 38 } Event_MP_Remote_operations; 39 39 -
cpukit/rtems/include/rtems/rtems/partmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * partmp.h,v 1.2 1995/05/31 16:47:02 joel Exp 15 15 */ 16 16 … … 40 40 PARTITION_MP_GET_BUFFER_RESPONSE = 4, 41 41 PARTITION_MP_RETURN_BUFFER_REQUEST = 5, 42 PARTITION_MP_RETURN_BUFFER_RESPONSE = 6 ,42 PARTITION_MP_RETURN_BUFFER_RESPONSE = 6 43 43 } Partition_MP_Remote_operations; 44 44 -
cpukit/rtems/include/rtems/rtems/regionmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * regionmp.h,v 1.2 1995/05/31 16:47:09 joel Exp 15 15 */ 16 16 … … 40 40 REGION_MP_GET_SEGMENT_RESPONSE = 4, 41 41 REGION_MP_RETURN_SEGMENT_REQUEST = 5, 42 REGION_MP_RETURN_SEGMENT_RESPONSE = 6 ,42 REGION_MP_RETURN_SEGMENT_RESPONSE = 6 43 43 } Region_MP_Remote_operations; 44 44 -
cpukit/rtems/include/rtems/rtems/sem.h
r7285a016 r45819022 22 22 * notice must appear in all copies of this file and its derivatives. 23 23 * 24 * $Id$24 * sem.h,v 1.2 1995/05/31 16:47:13 joel Exp 25 25 */ 26 26 -
cpukit/rtems/include/rtems/rtems/semmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * semmp.h,v 1.2 1995/05/31 16:47:15 joel Exp 15 15 */ 16 16 … … 41 41 SEMAPHORE_MP_OBTAIN_RESPONSE = 4, 42 42 SEMAPHORE_MP_RELEASE_REQUEST = 5, 43 SEMAPHORE_MP_RELEASE_RESPONSE = 6 ,43 SEMAPHORE_MP_RELEASE_RESPONSE = 6 44 44 } Semaphore_MP_Remote_operations; 45 45 -
cpukit/rtems/include/rtems/rtems/signalmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * signalmp.h,v 1.2 1995/05/31 16:47:18 joel Exp 15 15 */ 16 16 … … 35 35 typedef enum { 36 36 SIGNAL_MP_SEND_REQUEST = 0, 37 SIGNAL_MP_SEND_RESPONSE = 1 ,37 SIGNAL_MP_SEND_RESPONSE = 1 38 38 } Signal_MP_Remote_operations; 39 39 -
cpukit/rtems/include/rtems/rtems/taskmp.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * taskmp.h,v 1.2 1995/05/31 16:47:30 joel Exp 15 15 */ 16 16 … … 46 46 RTEMS_TASKS_MP_GET_NOTE_RESPONSE = 9, 47 47 RTEMS_TASKS_MP_SET_NOTE_REQUEST = 10, 48 RTEMS_TASKS_MP_SET_NOTE_RESPONSE = 11 ,48 RTEMS_TASKS_MP_SET_NOTE_RESPONSE = 11 49 49 } RTEMS_tasks_MP_Remote_operations; 50 50 -
cpukit/score/include/rtems/score/tqdata.h
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * tqdata.h,v 1.2 1995/05/31 16:47:42 joel Exp 15 15 */ 16 16 … … 33 33 typedef enum { 34 34 THREAD_QUEUE_DATA_FIFO_DISCIPLINE, /* RTEMS_FIFO queue discipline */ 35 THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE ,/* RTEMS_PRIORITY queue discipline */35 THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE /* RTEMS_PRIORITY queue discipline */ 36 36 } Thread_queue_Disciplines; 37 37 -
cpukit/score/include/rtems/score/wkspace.h
r7285a016 r45819022 13 13 * notice must appear in all copies of this file and its derivatives. 14 14 * 15 * $Id$15 * wkspace.h,v 1.2 1995/05/31 16:47:46 joel Exp 16 16 */ 17 17 … … 72 72 */ 73 73 74 STATIC INLINEvoid *_Workspace_Allocate_or_fatal_error(74 void *_Workspace_Allocate_or_fatal_error( 75 75 unsigned32 size 76 76 ); -
cpukit/score/inline/rtems/score/wkspace.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * wkspace.inl,v 1.2 1995/05/31 16:48:49 joel Exp 15 15 */ 16 16 … … 70 70 /*PAGE 71 71 * 72 * _Workspace_Allocate_or_fatal_error73 *74 */75 76 STATIC INLINE void *_Workspace_Allocate_or_fatal_error(77 unsigned32 size78 )79 {80 void *memory;81 82 memory = _Workspace_Allocate( size );83 84 if ( memory == NULL )85 rtems_fatal_error_occurred( RTEMS_UNSATISFIED );86 87 return memory;88 }89 90 /*PAGE91 *92 72 * _Workspace_Free 93 73 * -
cpukit/score/macros/rtems/score/chain.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * chain.inl,v 1.2 1995/05/31 16:48:59 joel Exp 15 15 */ 16 16 … … 146 146 #define _Chain_Get_unprotected( _the_chain ) \ 147 147 (( !_Chain_Is_empty( (_the_chain) ) ) \ 148 ? _Chain_Get_ unprotected( (_the_chain) ) \148 ? _Chain_Get_first_unprotected( (_the_chain) ) \ 149 149 : NULL) 150 150 -
cpukit/score/macros/rtems/score/heap.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * heap.inl,v 1.2 1995/05/31 16:49:10 joel Exp 15 15 */ 16 16 … … 45 45 (void *)(_the_block), \ 46 46 (_the_block)->back_flag & ~ HEAP_BLOCK_USED \ 47 ) \ 47 48 ) 48 49 … … 56 57 (void *)(_the_block), \ 57 58 (_the_block)->front_flag & ~ HEAP_BLOCK_USED \ 59 ) \ 58 60 ) 59 61 -
cpukit/score/macros/rtems/score/object.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * object.inl,v 1.2 1995/05/31 16:49:20 joel Exp 15 15 */ 16 16 … … 39 39 (*(_c4) = ((_name)) & 0xff; \ 40 40 } 41 );42 41 43 42 /*PAGE -
cpukit/score/macros/rtems/score/priority.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * priority.inl,v 1.2 1995/05/31 16:49:27 joel Exp 15 15 */ 16 16 … … 140 140 #define _Priority_Is_group_empty ( _the_priority ) \ 141 141 ( (_the_priority) == 0 ) 142 } 142 143 143 #endif 144 144 /* end of include file */ -
cpukit/score/macros/rtems/score/sysstate.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * sysstate.inl,v 1.2 1995/05/31 16:49:39 joel Exp 15 15 */ 16 16 … … 31 31 */ 32 32 33 #define _System_state_Get( void) \33 #define _System_state_Get() \ 34 34 (_System_state_Current) 35 35 -
cpukit/score/macros/rtems/score/wkspace.inl
r7285a016 r45819022 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * wkspace.inl,v 1.2 1995/05/31 16:49:53 joel Exp 15 15 */ 16 16 … … 67 67 /*PAGE 68 68 * 69 * _Workspace_Allocate_or_fatal_error70 *71 * NOTE: XXX FIX ME72 *73 * When not using static inlines, this should really be a function74 * somewhere.75 */76 77 static inline void _Workspace_Allocate_or_fatal_error(78 unsigned32 size79 )80 {81 void *memory;82 83 memory = _Workspace_Allocate( size );84 85 if ( memory == NULL )86 rtems_fatal_error_occurred( RTEMS_UNSATISFIED );87 88 return memory;89 }90 91 /*PAGE92 *93 69 * _Workspace_Free 94 70 * -
cpukit/score/src/thread.c
r7285a016 r45819022 11 11 * notice must appear in all copies of this file and its derivatives. 12 12 * 13 * $Id$13 * thread.c,v 1.5 1995/07/31 22:22:38 joel Exp 14 14 */ 15 15 … … 629 629 ) 630 630 { 631 Thread_Control *the_thread;632 Objects_Locations 631 Thread_Control *the_thread; 632 Objects_Locations location; 633 633 634 634 the_thread = _Thread_Get( id, &location ); … … 792 792 793 793 STATIC INLINE Thread_Control *_Thread_Get ( 794 Objects_Id id,795 unsigned32*location794 Objects_Id id, 795 Objects_Locations *location 796 796 ) 797 797 { -
cpukit/score/src/wkspace.c
r7285a016 r45819022 2 2 * Workspace Handler 3 3 * 4 * JUNK4 * XXX 5 5 * 6 6 * NOTE: 7 *8 * This file only exists to contain the one function which cannot9 * be written as a macro when "static inlines" are not used.10 7 * 11 8 * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994. … … 17 14 * notice must appear in all copies of this file and its derivatives. 18 15 * 19 * $Id$16 * wkspace.c,v 1.4 1995/05/25 15:26:53 joel Exp 20 17 */ 21 18 … … 23 20 #include <rtems/wkspace.h> 24 21 #include <rtems/fatal.h> 25 26 #ifndef USE_INLINES27 22 28 23 /*PAGE … … 45 40 return memory; 46 41 } 47 48 #endif /* USE_INLINES */49
Note: See TracChangeset
for help on using the changeset viewer.