summaryrefslogtreecommitdiffstats
path: root/posix1003_1/clocks_and_timers.rst
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-16 19:14:55 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:23 -0400
commitef0a063a84282f74a9da4a899c555037972873a9 (patch)
treeb49917084fd03c9d3cf0c08a1dc204298eba404b /posix1003_1/clocks_and_timers.rst
parentFix warnings. (diff)
downloadrtems-docs-ef0a063a84282f74a9da4a899c555037972873a9.tar.bz2
Split document into seperate files by section.
Diffstat (limited to 'posix1003_1/clocks_and_timers.rst')
-rw-r--r--posix1003_1/clocks_and_timers.rst81
1 files changed, 81 insertions, 0 deletions
diff --git a/posix1003_1/clocks_and_timers.rst b/posix1003_1/clocks_and_timers.rst
new file mode 100644
index 0000000..ebe578e
--- /dev/null
+++ b/posix1003_1/clocks_and_timers.rst
@@ -0,0 +1,81 @@
+Clocks and Timers
+#################
+
+Data Definitions for Clocks and Timers
+======================================
+
+Time Value Specification Structures
+-----------------------------------
+
+.. code:: c
+
+ struct timespec, Type, Implemented
+ struct itimerspec, Type, Implemented
+
+Timer Event Notification Control Block
+--------------------------------------
+
+Type Definitions
+----------------
+
+.. code:: c
+
+ clockid_t, Type, Implemented
+ timerid_t, Type, Implemented
+
+Timer Event Notification Manifest Constants
+-------------------------------------------
+
+.. code:: c
+
+ CLOCK_REALTIME, Constant, Implemented
+ TIMER_ABSTIME, Constant, Implemented
+
+Clock and Timer Functions
+=========================
+
+Clocks
+------
+
+.. code:: c
+
+ clock_settime(), Function, Partial Implementation
+ clock_gettime(), Function, Partial Implementation
+ clock_getres(), Function, Implemented
+
+Create a Per-Process Timer
+--------------------------
+
+.. code:: c
+
+ timer_create(), Function, Implemented
+
+Delete a Per-Process Timer
+--------------------------
+
+.. code:: c
+
+ timer_delete(), Function, Implemented
+
+Per-Process Timers
+------------------
+
+.. code:: c
+
+ timer_settime(), Function, Implemented
+ timer_gettime(), Function, Implemented
+ timer_getoverrun(), Function, Implemented
+
+High Resolution Sleep
+---------------------
+
+.. code:: c
+
+ nanosleep(), Function, Implemented
+
+.. COMMENT: COPYRIGHT (c) 1988-2002.
+
+.. COMMENT: On-Line Applications Research Corporation (OAR).
+
+.. COMMENT: All rights reserved.
+