summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-09-20 15:01:27 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-09-20 16:18:23 +0200
commit473437ccd716864711b900c36f46fcb4b26a605e (patch)
treeb698dc8ee6ff091b042ced8876a1e5011eaea9e5
parentUpdate due to Newlib <sys/cdefs.h> changes (diff)
downloadrtems-libbsd-473437ccd716864711b900c36f46fcb4b26a605e.tar.bz2
Update due to header file changes
-rw-r--r--rtemsbsd/src/rtems-bsd-condvar.c15
-rw-r--r--rtemsbsd/src/rtems-bsd-mutex.c11
-rw-r--r--rtemsbsd/src/rtems-bsd-rwlock.c6
-rw-r--r--rtemsbsd/src/rtems-bsd-support.c10
-rw-r--r--rtemsbsd/src/rtems-bsd-sx.c11
-rw-r--r--rtemsbsd/src/rtems-bsd-synch.c13
6 files changed, 32 insertions, 34 deletions
diff --git a/rtemsbsd/src/rtems-bsd-condvar.c b/rtemsbsd/src/rtems-bsd-condvar.c
index 63f30007..cb97174d 100644
--- a/rtemsbsd/src/rtems-bsd-condvar.c
+++ b/rtemsbsd/src/rtems-bsd-condvar.c
@@ -7,10 +7,9 @@
*/
/*
- * Copyright (c) 2009, 2010 embedded brains GmbH.
- * All rights reserved.
+ * Copyright (c) 2009-2013 embedded brains GmbH. All rights reserved.
*
- * embedded brains GmbH
+ * Dornierstr. 4
* Obere Lagerstr. 30
* 82178 Puchheim
* Germany
@@ -38,12 +37,12 @@
* SUCH DAMAGE.
*/
-/* Necessary to obtain some internal functions */
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
-
#include <freebsd/machine/rtems-bsd-config.h>
-#include <rtems/posix/cond.h>
+#include <rtems/score/objectimpl.h>
+#include <rtems/score/threaddispatch.h>
+#include <rtems/score/threadqimpl.h>
+#include <rtems/posix/condimpl.h>
#include <freebsd/sys/param.h>
#include <freebsd/sys/types.h>
@@ -109,7 +108,7 @@ static int _cv_wait_support(struct cv *cv, struct lock_object *lock, int timo, b
_Thread_Executing->Wait.id = cv->cv_id;
/* FIXME: Integer conversion */
- _Thread_queue_Enqueue(&pcv->Wait_queue, (Watchdog_Interval) timo);
+ _Thread_queue_Enqueue(&pcv->Wait_queue, _Thread_Executing, (Watchdog_Interval) timo);
DROP_GIANT();
diff --git a/rtemsbsd/src/rtems-bsd-mutex.c b/rtemsbsd/src/rtems-bsd-mutex.c
index 0468c13c..23249148 100644
--- a/rtemsbsd/src/rtems-bsd-mutex.c
+++ b/rtemsbsd/src/rtems-bsd-mutex.c
@@ -7,10 +7,10 @@
*/
/*
- * Copyright (c) 2009, 2010 embedded brains GmbH. All rights reserved.
+ * Copyright (c) 2009-2013 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
- * Obere Lagerstr. 30
+ * Dornierstr. 4
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
@@ -37,11 +37,12 @@
* SUCH DAMAGE.
*/
-/* Necessary to obtain some internal functions */
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
-
#include <freebsd/machine/rtems-bsd-config.h>
+#include <rtems/score/objectimpl.h>
+#include <rtems/rtems/attrimpl.h>
+#include <rtems/rtems/semimpl.h>
+
#include <freebsd/sys/param.h>
#include <freebsd/sys/types.h>
#include <freebsd/sys/systm.h>
diff --git a/rtemsbsd/src/rtems-bsd-rwlock.c b/rtemsbsd/src/rtems-bsd-rwlock.c
index 21c61dae..a38a9a14 100644
--- a/rtemsbsd/src/rtems-bsd-rwlock.c
+++ b/rtemsbsd/src/rtems-bsd-rwlock.c
@@ -37,13 +37,13 @@
* SUCH DAMAGE.
*/
-/* Necessary to obtain some internal functions */
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <pthread.h>
-#include <rtems/posix/rwlock.h>
#include <freebsd/machine/rtems-bsd-config.h>
+#include <rtems/score/objectimpl.h>
+#include <rtems/posix/rwlockimpl.h>
+
#include <sys/types.h>
#include <freebsd/sys/param.h>
#include <freebsd/sys/types.h>
diff --git a/rtemsbsd/src/rtems-bsd-support.c b/rtemsbsd/src/rtems-bsd-support.c
index 4a61b179..8c0ccac7 100644
--- a/rtemsbsd/src/rtems-bsd-support.c
+++ b/rtemsbsd/src/rtems-bsd-support.c
@@ -37,14 +37,12 @@
* SUCH DAMAGE.
*/
-/*
- * This violation is specifically for _Thread_Disable_dispatch
- * and _Thread_Enable_dispatch. Use of the critical_enter()
- * and critical_exit() routines should be reviewed.
- */
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
+/* FIXME: This file needs careful review. */
+
#include <freebsd/machine/rtems-bsd-config.h>
+#include <rtems/score/threaddispatch.h>
+
#include <freebsd/sys/types.h>
#include <freebsd/sys/systm.h>
#include <freebsd/sys/malloc.h>
diff --git a/rtemsbsd/src/rtems-bsd-sx.c b/rtemsbsd/src/rtems-bsd-sx.c
index 3634d85e..73df4f6f 100644
--- a/rtemsbsd/src/rtems-bsd-sx.c
+++ b/rtemsbsd/src/rtems-bsd-sx.c
@@ -7,10 +7,10 @@
*/
/*
- * Copyright (c) 2009, 2010 embedded brains GmbH. All rights reserved.
+ * Copyright (c) 2009-2013 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
- * Obere Lagerstr. 30
+ * Dornierstr. 4
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
@@ -37,11 +37,12 @@
* SUCH DAMAGE.
*/
-/* Necessary to obtain some internal functions */
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
-
#include <freebsd/machine/rtems-bsd-config.h>
+#include <rtems/score/objectimpl.h>
+#include <rtems/rtems/attrimpl.h>
+#include <rtems/rtems/semimpl.h>
+
#include <freebsd/sys/param.h>
#include <freebsd/sys/types.h>
#include <freebsd/sys/systm.h>
diff --git a/rtemsbsd/src/rtems-bsd-synch.c b/rtemsbsd/src/rtems-bsd-synch.c
index 110fe666..40e08e1c 100644
--- a/rtemsbsd/src/rtems-bsd-synch.c
+++ b/rtemsbsd/src/rtems-bsd-synch.c
@@ -38,16 +38,15 @@
*/
/*
- * This violation is specifically for _Thread_Disable_dispatch
- * and _Thread_Enable_dispatch. Use of the critical_enter()
- * and critical_exit() routines should be reviewed.
+ * FIXME: This seems to be a completely broken implementation.
*/
-#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <freebsd/machine/rtems-bsd-config.h>
-#include <rtems/score/states.h>
+
+#include <rtems/score/statesimpl.h>
+#include <rtems/score/threaddispatch.h>
#include <rtems/score/thread.h>
-#include <rtems/score/threadq.h>
+#include <rtems/score/threadqimpl.h>
#include <freebsd/sys/param.h>
#include <freebsd/sys/types.h>
@@ -169,7 +168,7 @@ sleep_queue_timedwait(void *wchan, int pri, int timeout, int catch)
executing->Wait.queue = &sq->queue;
_ISR_Enable( level );
- _Thread_queue_Enqueue( &sq->queue, timeout );
+ _Thread_queue_Enqueue( &sq->queue, executing, timeout );
_Thread_Enable_dispatch();
return _Thread_Executing->Wait.return_code;
}