Changeset be650a84 in rtems for cpukit/score/src/coremsg.c
- Timestamp:
- Sep 21, 1995, 4:22:25 PM (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 79aaec8
- Parents:
- c73aee1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/src/coremsg.c
rc73aee1 rbe650a84 20 20 21 21 #include <rtems/system.h> 22 #include <rtems/rtems/status.h>23 #include <rtems/rtems/attr.h>24 22 #include <rtems/core/chain.h> 25 23 #include <rtems/core/isr.h> 26 #include <rtems/rtems/message.h>27 24 #include <rtems/core/object.h> 28 #include <rtems/ rtems/options.h>25 #include <rtems/core/coremsg.h> 29 26 #include <rtems/core/states.h> 30 #include <rtems/rtems/support.h>31 27 #include <rtems/core/thread.h> 32 28 #include <rtems/core/wkspace.h> 33 29 #include <rtems/core/mpci.h> 34 #include <rtems/sysstate.h>35 30 36 31 /*PAGE … … 220 215 ); 221 216 222 *( rtems_unsigned32 *)the_thread->Wait.return_argument_1 = size;217 *(unsigned32 *)the_thread->Wait.return_argument_1 = size; 223 218 224 219 if ( !_Objects_Is_local_id( the_thread->Object.id ) ) … … 397 392 size 398 393 ); 399 *( rtems_unsigned32 *)the_thread->Wait.return_argument_1 = size;394 *(unsigned32 *)the_thread->Wait.return_argument_1 = size; 400 395 401 396 if ( !_Objects_Is_local_id( the_thread->Object.id ) )
Note: See TracChangeset
for help on using the changeset viewer.