summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/extensionident.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/sapi/src/extensionident.c')
-rw-r--r--cpukit/sapi/src/extensionident.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/cpukit/sapi/src/extensionident.c b/cpukit/sapi/src/extensionident.c
new file mode 100644
index 0000000000..e59f39d7dc
--- /dev/null
+++ b/cpukit/sapi/src/extensionident.c
@@ -0,0 +1,45 @@
+/**
+ * @file
+ *
+ * @ingroup ClassicUserExtensions
+ *
+ * @brief User Extensions Implementation.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2007.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/system.h>
+#include <rtems/rtems/support.h>
+#include <rtems/score/object.h>
+#include <rtems/score/thread.h>
+#include <rtems/extension.h>
+
+rtems_status_code rtems_extension_ident(
+ rtems_name name,
+ rtems_id *id
+)
+{
+ Objects_Name_or_id_lookup_errors status;
+
+ status = _Objects_Name_to_id_u32(
+ &_Extension_Information,
+ name,
+ OBJECTS_SEARCH_LOCAL_NODE,
+ id
+ );
+
+ return _Status_Object_name_errors_to_status[ status ];
+}