summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pspintrylock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/pspintrylock.c')
-rw-r--r--cpukit/posix/src/pspintrylock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/posix/src/pspintrylock.c b/cpukit/posix/src/pspintrylock.c
index a77b0e2b21..86c490f1cf 100644
--- a/cpukit/posix/src/pspintrylock.c
+++ b/cpukit/posix/src/pspintrylock.c
@@ -1,7 +1,7 @@
/*
* POSIX Spinlock Manager -- Wait at a Spinlock
*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -47,7 +47,9 @@ int pthread_spin_trylock(
the_spinlock = _POSIX_Spinlock_Get( spinlock, &location );
switch ( location ) {
+#if defined(RTEMS_MULTIPROCESSING)
case OBJECTS_REMOTE:
+#endif
case OBJECTS_ERROR:
return EINVAL;