summaryrefslogtreecommitdiffstats
path: root/freebsd/lib/libc/db/db/db.c
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/lib/libc/db/db/db.c')
-rw-r--r--freebsd/lib/libc/db/db/db.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/freebsd/lib/libc/db/db/db.c b/freebsd/lib/libc/db/db/db.c
index 2cfb0bb3..b6b4a5e6 100644
--- a/freebsd/lib/libc/db/db/db.c
+++ b/freebsd/lib/libc/db/db/db.c
@@ -51,13 +51,6 @@ dbopen(const char *fname, int flags, int mode, DBTYPE type, const void *openinfo
{
#define DB_FLAGS (DB_LOCK | DB_SHMEM | DB_TXN)
-#ifdef __rtems__
-/* FIXME: Add lock capabilities to RTEMS file system */
-#define O_EXLOCK 0
-#define O_SHLOCK 0
-/* FIXME: Add no symlink follow capabilities to RTEMS file system */
-#define O_NOFOLLOW 0
-#endif /* __rtems__ */
#define USE_OPEN_FLAGS \
(O_CREAT | O_EXCL | O_EXLOCK | O_NOFOLLOW | O_NONBLOCK | \
O_RDONLY | O_RDWR | O_SHLOCK | O_SYNC | O_TRUNC)