summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-14 15:25:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-14 15:25:14 +0000
commit4daebbd022089bd2291f287363348e310f906456 (patch)
treeef9bd61b0c1e23961b0bd37ed120968034b04e33 /cpukit/score/include/rtems/score/object.h
parent2008-08-14 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-4daebbd022089bd2291f287363348e310f906456.tar.bz2
2008-08-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/status.h, score/include/rtems/score/coremutex.h, score/include/rtems/score/object.h: Removed extraneous commas.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index b488dd6d45..2abe12cead 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -291,11 +291,11 @@ typedef enum {
* an object with the specified ID.
*/
typedef enum {
- OBJECTS_LOCAL = 0, /* object is local */
- OBJECTS_ERROR = 1, /* id was invalid */
#if defined(RTEMS_MULTIPROCESSING)
OBJECTS_REMOTE = 2, /* object is remote */
#endif
+ OBJECTS_LOCAL = 0, /* object is local */
+ OBJECTS_ERROR = 1 /* id was invalid */
} Objects_Locations;
/**