OSDN Git Service

(none)
authorryuz <ryuz>
Sun, 24 Feb 2008 05:50:14 +0000 (05:50 +0000)
committerryuz <ryuz>
Sun, 24 Feb 2008 05:50:14 +0000 (05:50 +0000)
aplfw/system/sysapi/systim_signal.c [new file with mode: 0755]

diff --git a/aplfw/system/sysapi/systim_signal.c b/aplfw/system/sysapi/systim_signal.c
new file mode 100755 (executable)
index 0000000..8558734
--- /dev/null
@@ -0,0 +1,27 @@
+/** 
+ *  Hyper Operating System  Application Framework
+ *
+ * @file  system.h
+ * @brief %jp{システム用API定義}
+ *
+ * Copyright (C) 2008 by Project HOS
+ * http://sourceforge.jp/projects/hos/
+ */
+
+
+#include "sysapi_local.h"
+
+
+SYSTIM_CPUTIME         SysTim_TimeCounter;             /* デフォルトのタイマカウンタ */
+
+
+/**< タイムティクの供給(システム用) */
+void SysTim_Signal(unsigned long ulTic)
+{
+       SysTim_TimeCounter += ulTic;
+       
+       isig_tim();
+}
+
+
+/* end of file */