summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/sup_fs_location.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-12 09:25:39 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-14 16:26:06 +0200
commit49cdf40afa1b67b1eedbec26b73c59f54dc882cd (patch)
treed5f27895d8bb30533150c66fd019a18291a52e6a /cpukit/libcsupport/src/sup_fs_location.c
parentscore: Add _Chain_Insert_ordered_unprotected() (diff)
downloadrtems-49cdf40afa1b67b1eedbec26b73c59f54dc882cd.tar.bz2
score: Add and use _Thread_Dispatch_is_enabled()
Delete _Thread_Dispatch_in_critical_section() and _Thread_Is_dispatching_enabled().
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/sup_fs_location.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/sup_fs_location.c b/cpukit/libcsupport/src/sup_fs_location.c
index 2ce514549e..b4713c554c 100644
--- a/cpukit/libcsupport/src/sup_fs_location.c
+++ b/cpukit/libcsupport/src/sup_fs_location.c
@@ -178,7 +178,7 @@ void rtems_filesystem_global_location_release(
rtems_filesystem_global_location_t *global_loc
)
{
- if (!_Thread_Dispatch_in_critical_section()) {
+ if (_Thread_Dispatch_is_enabled()) {
release_with_count(global_loc, 1);
} else {
if (global_loc->deferred_released_count == 0) {