summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/clocksetenableattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/clocksetenableattr.c')
-rw-r--r--cpukit/posix/src/clocksetenableattr.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/cpukit/posix/src/clocksetenableattr.c b/cpukit/posix/src/clocksetenableattr.c
deleted file mode 100644
index ac15f31ca4..0000000000
--- a/cpukit/posix/src/clocksetenableattr.c
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * @file
- *
- * @brief Clock set Enable Attribute Access
- * @ingroup POSIXAPI
- */
-
-/*
- * 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.org/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <time.h>
-#include <errno.h>
-
-#include <rtems/system.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/thread.h>
-
-#include <rtems/seterr.h>
-
-/*
- * 20.1.5 CPU-time Clock Attribute Access, P1003.4b/D8, p. 58
- */
-
-int clock_setenable_attr(
- clockid_t clock_id,
- int attr
-)
-{
- rtems_set_errno_and_return_minus_one( ENOSYS );
-}