2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
5 #ifndef _USERLAND_FS_LOCKER_H
6 #define _USERLAND_FS_LOCKER_H
9 // kernel: use the RecursiveLock class
12 #include "RecursiveLock.h"
15 namespace UserlandFSUtil
{
16 typedef RecursiveLock Locker
;
21 // userland: use the BLocker class
25 namespace UserlandFSUtil
{
26 typedef BLocker Locker
;
29 #endif // kernel/userland
31 using UserlandFSUtil::Locker
;
33 #endif // _USERLAND_FS_LOCKER_H