summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/sys
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-26 14:49:35 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-26 14:49:35 +0200
commit137250239e9e0b244eb924928e8d1ec7996dcfef (patch)
tree8f4d5392ccb3bf8ac13ead1a8ea6451968519f1d /freebsd/sys/sys
parentMake sure CALLOUT_PROCESSED is not used (diff)
downloadrtems-libbsd-137250239e9e0b244eb924928e8d1ec7996dcfef.tar.bz2
Make sure CALLOUT_DFRMIGRATION is not used
This flag supports the callout migration in FreeBSD. This feature is not supported by libbsd.
Diffstat (limited to 'freebsd/sys/sys')
-rw-r--r--freebsd/sys/sys/callout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/freebsd/sys/sys/callout.h b/freebsd/sys/sys/callout.h
index 6c94848a..68861957 100644
--- a/freebsd/sys/sys/callout.h
+++ b/freebsd/sys/sys/callout.h
@@ -46,8 +46,8 @@
#define CALLOUT_MPSAFE 0x0008 /* deprecated */
#define CALLOUT_RETURNUNLOCKED 0x0010 /* handler returns with mtx unlocked */
#define CALLOUT_SHAREDLOCK 0x0020 /* callout lock held in shared mode */
-#define CALLOUT_DFRMIGRATION 0x0040 /* callout in deferred migration mode */
#ifndef __rtems__
+#define CALLOUT_DFRMIGRATION 0x0040 /* callout in deferred migration mode */
#define CALLOUT_PROCESSED 0x0080 /* callout in wheel or processing list? */
#define CALLOUT_DIRECT 0x0100 /* allow exec from hw int context */
#endif /* __rtems__ */