Completed first pass at function status.

Added most data types without status information.
This commit is contained in:
Joel Sherrill
1998-03-17 16:37:57 +00:00
parent 2a087f30a4
commit 3cffce87d6
9 changed files with 117 additions and 96 deletions

View File

@@ -12,10 +12,20 @@
@subsection Time Value Specification Structures
@example
struct timespec, Type, Implemented
struct itimerspec, Type, Implemented
@end example
@subsection Timer Event Notification Control Block
@subsection Type Definitions
@example
clockid_t, Type, Implemented
timerid_t, Type, Implemented
@end example
@subsection Manifest Constants
@section Clock and Timer Functions
@@ -23,34 +33,34 @@
@subsection Clocks
@example
clock_settime(), Function
clock_gettime(), Function
clock_getres(), Function
clock_settime(), Function, Partial Implementation
clock_gettime(), Function, Partial Implementation
clock_getres(), Function, Implemented
@end example
@subsection Create a Per-Process Timer
@example
timer_create(), Function
timer_create(), Function, Dummy Implementation
@end example
@subsection Delete a Per-Process Timer
@example
timer_delete(), Function
timer_delete(), Function, Dummy Implementation
@end example
@subsection Per-Process Timers
@example
timer_settime(), Function
timer_gettime(), Function
timer_getoverrun(), Function
timer_settime(), Function, Dummy Implementation
timer_gettime(), Function, Dummy Implementation
timer_getoverrun(), Function, Dummy Implementation
@end example
@subsection High Resolution Sleep
@example
nanosleep(), Function
nanosleep(), Function, Implemented
@end example