summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/barrierimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/rtems/posix/barrierimpl.h')
-rw-r--r--cpukit/posix/include/rtems/posix/barrierimpl.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/cpukit/posix/include/rtems/posix/barrierimpl.h b/cpukit/posix/include/rtems/posix/barrierimpl.h
index af220b9b19..240abad45d 100644
--- a/cpukit/posix/include/rtems/posix/barrierimpl.h
+++ b/cpukit/posix/include/rtems/posix/barrierimpl.h
@@ -106,25 +106,6 @@ RTEMS_INLINE_ROUTINE POSIX_Barrier_Control *_POSIX_Barrier_Get (
);
}
-/**
- * @brief Check if a barrier control block is NULL.
- *
- * This function returns @c TRUE if the_barrier is @c NULL and @c FALSE
- * otherwise.
- *
- * @param[in] the_barrier is the pointer to the barrier control block
- * to be checked.
- *
- * @retval TRUE The barrier control block is @c NULL.
- * @retval FALSE The barrier control block is not @c NULL.
- */
-RTEMS_INLINE_ROUTINE bool _POSIX_Barrier_Is_null (
- POSIX_Barrier_Control *the_barrier
-)
-{
- return ( the_barrier == NULL );
-}
-
#ifdef __cplusplus
}
#endif