summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/set_tim.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/set_tim.c')
-rw-r--r--cpukit/itron/src/set_tim.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/cpukit/itron/src/set_tim.c b/cpukit/itron/src/set_tim.c
new file mode 100644
index 0000000000..9449b74fe5
--- /dev/null
+++ b/cpukit/itron/src/set_tim.c
@@ -0,0 +1,46 @@
+/*
+ * 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/itron.h>
+
+#include <rtems/score/thread.h>
+#include <rtems/score/tod.h>
+
+#include <rtems/itron/time.h>
+
+/*
+ * set_tim - Set System Clock
+ */
+
+ER set_tim(
+ SYSTIME *pk_tim
+)
+{
+#if 0
+ struct timespec time;
+
+/* convert *pk_tim which is 48 bits integer in binary into an ordinary
+ integer in milliseconds */
+
+/* XXX */ temp = 0;
+ if(temp > 0) {
+ _Thread_Disable_dispatch();
+ _TOD_Set(&time);
+ _Thread_Enable_dispatch();
+ return E_OK;
+ }
+#endif
+ return E_SYS;
+}