summaryrefslogtreecommitdiffstats
path: root/rtemsbsd
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-29 08:38:09 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-30 09:49:43 +0200
commitb8021fdcf630cdf53fb176a8b73d4f1624b6e193 (patch)
tree5039ffd5e53f5a0eb39e2897f41ce6e77a7acfbf /rtemsbsd
parentDelete rtems_bsd_thread_chain (diff)
downloadrtems-libbsd-b8021fdcf630cdf53fb176a8b73d4f1624b6e193.tar.bz2
critical_enter/exit(): Use inline function
Diffstat (limited to 'rtemsbsd')
-rw-r--r--rtemsbsd/rtems/rtems-bsd-support.c61
1 files changed, 0 insertions, 61 deletions
diff --git a/rtemsbsd/rtems/rtems-bsd-support.c b/rtemsbsd/rtems/rtems-bsd-support.c
deleted file mode 100644
index 1d1baa45..00000000
--- a/rtemsbsd/rtems/rtems-bsd-support.c
+++ /dev/null
@@ -1,61 +0,0 @@
-/**
- * @file
- *
- * @ingroup rtems_bsd_rtems
- *
- * @brief TODO.
- */
-
-/*
- * Copyright (c) 2009, 2010 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Obere Lagerstr. 30
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
-
-/* FIXME: This file needs careful review. */
-
-#include <machine/rtems-bsd-kernel-space.h>
-
-#include <rtems/score/threaddispatch.h>
-
-#include <rtems/bsd/sys/types.h>
-#include <sys/systm.h>
-#include <sys/malloc.h>
-#include <sys/uio.h>
-
-void
-critical_enter(void)
-{
- _Thread_Disable_dispatch();
-}
-
-void
-critical_exit(void)
-{
- _Thread_Enable_dispatch();
-}