2006-08-29 Joel Sherrill <joel@OARcorp.com>

* score/include/rtems/score/object.h: _Objects_Local_node is a uint16_t
	so cast the _Objects_Local_node constant to 1.
This commit is contained in:
Joel Sherrill
2006-08-29 21:54:36 +00:00
parent cd12590b7f
commit 0337a9c5e9
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2006-08-29 Joel Sherrill <joel@OARcorp.com>
* score/include/rtems/score/object.h: _Objects_Local_node is a uint16_t
so cast the _Objects_Local_node constant to 1.
2006-08-29 Joel Sherrill <joel@OARcorp.com>
* libfs/src/dosfs/fat.h, libfs/src/dosfs/msdos.h,

View File

@@ -355,9 +355,9 @@ typedef struct {
* The following is referenced to the node number of the local node.
*/
#if defined(RTEMS_MULTIPROCESSING)
SCORE_EXTERN uint16_t _Objects_Local_node;
SCORE_EXTERN uint16_t _Objects_Local_node;
#else
#define _Objects_Local_node 1
#define _Objects_Local_node ((uint16_t)1)
#endif
/**