Changeset 6b384516 in rtems
- Timestamp:
- 01/10/03 15:04:42 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 81df4984
- Parents:
- eb7cddd3
- Location:
- cpukit/rtems
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/rtems/ChangeLog
reb7cddd3 r6b384516 1 2003-01-10 Joel Sherrill <joel@OARcorp.com> 2 3 * src/msg.c, src/part.c, src/sem.c, src/tasks.c: Correct object 4 class control structure initialization for multiprocessing 5 configurations. 6 1 7 2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/rtems/src/msg.c
reb7cddd3 r6b384516 59 59 #if defined(RTEMS_MULTIPROCESSING) 60 60 , 61 FALSE,/* TRUE if this is a global object class */62 NULL/* Proxy extraction support callout */61 TRUE, /* TRUE if this is a global object class */ 62 _Message_queue_MP_Send_extract_proxy /* Proxy extraction support callout */ 63 63 #endif 64 64 ); -
cpukit/rtems/src/part.c
reb7cddd3 r6b384516 49 49 #if defined(RTEMS_MULTIPROCESSING) 50 50 , 51 FALSE,/* TRUE if this is a global object class */52 NULL/* Proxy extraction support callout */51 TRUE, /* TRUE if this is a global object class */ 52 _Partition_MP_Send_extract_proxy /* Proxy extraction support callout */ 53 53 #endif 54 54 ); -
cpukit/rtems/src/sem.c
reb7cddd3 r6b384516 72 72 #if defined(RTEMS_MULTIPROCESSING) 73 73 , 74 FALSE,/* TRUE if this is a global object class */75 NULL/* Proxy extraction support callout */74 TRUE, /* TRUE if this is a global object class */ 75 _Semaphore_MP_Send_extract_proxy /* Proxy extraction support callout */ 76 76 #endif 77 77 ); -
cpukit/rtems/src/tasks.c
reb7cddd3 r6b384516 259 259 #if defined(RTEMS_MULTIPROCESSING) 260 260 , 261 FALSE,/* TRUE if this is a global object class */261 TRUE, /* TRUE if this is a global object class */ 262 262 NULL /* Proxy extraction support callout */ 263 263 #endif
Note: See TracChangeset
for help on using the changeset viewer.