Changeset 3cffce87 in rtems
- Timestamp:
- 03/17/98 16:37:57 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6984a19
- Parents:
- 2a087f3
- Location:
- doc/posix1003.1
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix1003.1/ch11.t
r2a087f3 r3cffce87 67 67 68 68 @example 69 pthread_mutexattr_init(), Function 70 pthread_mutexattr_destroy(), Function 71 pthread_mutexattr_getpshared(), Function 72 pthread_mutexattr_setpshared(), Function 69 pthread_mutexattr_init(), Function, Implemented 70 pthread_mutexattr_destroy(), Function, Implemented 71 pthread_mutexattr_getpshared(), Function, Implemented 72 pthread_mutexattr_setpshared(), Function, Implemented 73 73 @end example 74 74 … … 76 76 77 77 @example 78 pthread_mutex_init(), Function 79 pthread_mutex_destroy(), Function 78 pthread_mutex_init(), Function, Implemented 79 pthread_mutex_destroy(), Function, Implemented 80 80 @end example 81 81 … … 83 83 84 84 @example 85 pthread_mutex_lock(), Function 86 pthread_mutex_trylock(), Function 87 pthread_mutex_unlock(), Function 85 pthread_mutex_lock(), Function, Implemented 86 pthread_mutex_trylock(), Function, Implemented 87 pthread_mutex_unlock(), Function, Implemented 88 88 @end example 89 89 … … 93 93 94 94 @example 95 pthread_condattr_init(), Function 96 pthread_condattr_destroy(), Function 97 pthread_condattr_getpshared(), Function 98 pthread_condattr_setpshared(), Function 95 pthread_condattr_init(), Function, Implemented 96 pthread_condattr_destroy(), Function, Implemented 97 pthread_condattr_getpshared(), Function, Implemented 98 pthread_condattr_setpshared(), Function, Implemented 99 99 @end example 100 100 … … 102 102 103 103 @example 104 pthread_cond_init(), Function 105 pthread_cond_destroy(), Function 104 pthread_cond_init(), Function, Implemented 105 pthread_cond_destroy(), Function, Implemented 106 106 @end example 107 107 … … 109 109 110 110 @example 111 pthread_cond_signal(), Function 112 pthread_cond_broadcast(), Function 111 pthread_cond_signal(), Function, Implemented 112 pthread_cond_broadcast(), Function, Implemented 113 113 @end example 114 114 … … 116 116 117 117 @example 118 pthread_cond_wait(), Function 119 pthread_cond_timedwait(), Function 118 pthread_cond_wait(), Function, Implemented 119 pthread_cond_timedwait(), Function, Implemented 120 120 @end example 121 121 -
doc/posix1003.1/ch12.t
r2a087f3 r3cffce87 14 14 15 15 @example 16 mlockall(), Function 17 munlockall(), Function 16 mlockall(), Function, Unimplemented 17 munlockall(), Function, Unimplemented 18 18 @end example 19 19 … … 21 21 22 22 @example 23 mlock(), Function 24 munlock(), Function 23 mlock(), Function, Unimplemented 24 munlock(), Function, Unimplemented 25 25 @end example 26 26 … … 30 30 31 31 @example 32 mmap(), Function 32 mmap(), Function, Unimplemented 33 33 @end example 34 34 … … 36 36 37 37 @example 38 munmap(), Function 38 munmap(), Function, Unimplemented 39 39 @end example 40 40 … … 42 42 43 43 @example 44 mprotect(), Function 44 mprotect(), Function, Unimplemented 45 45 @end example 46 46 … … 48 48 49 49 @example 50 msync(), Function 50 msync(), Function, Unimplemented, Unimplemented 51 51 @end example 52 52 … … 56 56 57 57 @example 58 shm_open(), Function 58 shm_open(), Function, Unimplemented 59 59 @end example 60 60 … … 62 62 63 63 @example 64 shm_unlink(), Function 64 shm_unlink(), Function, Unimplemented 65 65 @end example -
doc/posix1003.1/ch13.t
r2a087f3 r3cffce87 10 10 11 11 @section Scheduling Parameters 12 13 @example 14 struct sched_param, Type, Implemented 15 @end example 12 16 13 17 @section Scheduling Policies … … 24 28 25 29 @example 26 sched_setparam(), Function 30 sched_setparam(), Function, Dummy Implementation 27 31 @end example 28 32 … … 30 34 31 35 @example 32 sched_getparam(), Function 36 sched_getparam(), Function, Dummy Implementation 33 37 @end example 34 38 … … 36 40 37 41 @example 38 sched_setscheduler(), Function 42 sched_setscheduler(), Function, Dummy Implementation 39 43 @end example 40 44 … … 42 46 43 47 @example 44 sched_getscheduler(), Function 48 sched_getscheduler(), Function, Dummy Implementation 45 49 @end example 46 50 … … 48 52 49 53 @example 50 sched_yield(), Function 54 sched_yield(), Function, Implemented 51 55 @end example 52 56 … … 54 58 55 59 @example 56 sched_get_priority_max(), Function 57 sched_get_priority_min(), Function 58 sched_get_priority_rr_get_interval(), Function 60 sched_get_priority_max(), Function, Implemented 61 sched_get_priority_min(), Function, Implemented 62 sched_get_priority_rr_get_interval(), Function, Implemented 59 63 @end example 60 64 … … 74 78 75 79 @example 76 pthread_attr_setscope(), Function 77 pthread_attr_getscope(), Function 78 pthread_attr_setinheritsched(), Function 79 pthread_attr_getinheritsched(), Function 80 pthread_attr_setschedpolicy(), Function 81 pthread_attr_getschedpolicy(), Function 82 pthread_attr_setschedparam(), Function 83 pthread_attr_getschedparam(), Function 80 pthread_attr_setscope(), Function, Implemented 81 pthread_attr_getscope(), Function, Implemented 82 pthread_attr_setinheritsched(), Function, Implemented 83 pthread_attr_getinheritsched(), Function, Implemented 84 pthread_attr_setschedpolicy(), Function, Implemented 85 pthread_attr_getschedpolicy(), Function, Implemented 86 pthread_attr_setschedparam(), Function, Implemented 87 pthread_attr_getschedparam(), Function, Implemented 84 88 @end example 85 89 … … 87 91 88 92 @example 89 pthread_setschedparam(), Function 90 pthread_getschedparam(), Function 93 pthread_setschedparam(), Function, Implemented 94 pthread_getschedparam(), Function, Implemented 91 95 @end example 92 96 93 @section Synchronization Scheduling 97 @section Synchronization Scheduling, Implemented 94 98 95 99 @subsection Mutex Initialization Scheduling Attributes 96 100 97 101 @example 98 pthread_mutexattr_setprotocol(), Function 99 pthread_mutexattr_getprotocol(), Function 100 pthread_mutexattr_setpri ceiling(), Function101 pthread_mutexattr_getpri ceiling(), Function102 pthread_mutexattr_setprotocol(), Function, Implemented 103 pthread_mutexattr_getprotocol(), Function, Implemented 104 pthread_mutexattr_setprioceiling(), Function, Implemented 105 pthread_mutexattr_getprioceiling(), Function, Implemented 102 106 @end example 103 107 … … 105 109 106 110 @example 107 pthread_mutex_setprioceiling(), Function 108 pthread_mutex_getprioceiling(), Function 111 pthread_mutex_setprioceiling(), Function, Implemented 112 pthread_mutex_getprioceiling(), Function, Implemented 109 113 @end example 110 114 -
doc/posix1003.1/ch14.t
r2a087f3 r3cffce87 13 13 @subsection Time Value Specification Structures 14 14 15 @example 16 struct timespec, Type, Implemented 17 struct itimerspec, Type, Implemented 18 @end example 19 15 20 @subsection Timer Event Notification Control Block 16 21 17 22 @subsection Type Definitions 23 24 @example 25 clockid_t, Type, Implemented 26 timerid_t, Type, Implemented 27 @end example 18 28 19 29 @subsection Manifest Constants … … 24 34 25 35 @example 26 clock_settime(), Function 27 clock_gettime(), Function 28 clock_getres(), Function 36 clock_settime(), Function, Partial Implementation 37 clock_gettime(), Function, Partial Implementation 38 clock_getres(), Function, Implemented 29 39 @end example 30 40 … … 32 42 33 43 @example 34 timer_create(), Function 44 timer_create(), Function, Dummy Implementation 35 45 @end example 36 46 … … 38 48 39 49 @example 40 timer_delete(), Function 50 timer_delete(), Function, Dummy Implementation 41 51 @end example 42 52 … … 44 54 45 55 @example 46 timer_settime(), Function 47 timer_gettime(), Function 48 timer_getoverrun(), Function 56 timer_settime(), Function, Dummy Implementation 57 timer_gettime(), Function, Dummy Implementation 58 timer_getoverrun(), Function, Dummy Implementation 49 59 @end example 50 60 … … 52 62 53 63 @example 54 nanosleep(), Function 64 nanosleep(), Function, Implemented 55 65 @end example 56 66 -
doc/posix1003.1/ch15.t
r2a087f3 r3cffce87 13 13 @subsection Data Structures 14 14 15 @example 16 mqd_t, Type, Untested Implementation 17 mq_attr, Type, Untested Implementation 18 @end example 19 15 20 @section Message Passing Functions 16 21 … … 18 23 19 24 @example 20 mq_open(), Function 25 mq_open(), Function, Untested Implementation 21 26 @end example 22 27 … … 24 29 25 30 @example 26 mq_close(), Function 31 mq_close(), Function, Untested Implementation 27 32 @end example 28 33 … … 30 35 31 36 @example 32 mq_unlink 37 mq_unlink, Function, Untested Implementation 33 38 @end example 34 39 … … 36 41 37 42 @example 38 mq_send(), Function 43 mq_send(), Function, Untested Implementation 39 44 @end example 40 45 … … 42 47 43 48 @example 44 mq_receive(), Function 49 mq_receive(), Function, Untested Implementation 45 50 @end example 46 51 … … 48 53 49 54 @example 50 mq_notify(), Function 55 mq_notify(), Function, Untested Implementation 51 56 @end example 52 57 … … 54 59 55 60 @example 56 mq_setattr(), Function 61 mq_setattr(), Function, Untested Implementation 57 62 @end example 58 63 … … 60 65 61 66 @example 62 mq_getattr(), Function 67 mq_getattr(), Function, Untested Implementation 63 68 @end example 64 69 -
doc/posix1003.1/ch16.t
r2a087f3 r3cffce87 16 16 17 17 @example 18 pthread_attr_init(), Function 19 pthread_attr_destroy(), Function 20 pthread_attr_setstacksize(), Function 21 pthread_attr_getstacksize(), Function 22 pthread_attr_setstackaddr(), Function 23 pthread_attr_getstackaddr(), Function 24 pthread_attr_setdetachstate(), Function 25 pthread_attr_getdetachstate(), Function 18 pthread_attr_init(), Function, Implemented 19 pthread_attr_destroy(), Function, Implemented 20 pthread_attr_setstacksize(), Function, Implemented 21 pthread_attr_getstacksize(), Function, Implemented 22 pthread_attr_setstackaddr(), Function, Implemented 23 pthread_attr_getstackaddr(), Function, Implemented 24 pthread_attr_setdetachstate(), Function, Implemented 25 pthread_attr_getdetachstate(), Function, Implemented 26 26 @end example 27 27 … … 29 29 30 30 @example 31 pthread_create(), Function 31 pthread_create(), Function, Implemented 32 32 @end example 33 33 … … 35 35 36 36 @example 37 pthread_join(), Function 37 pthread_join(), Function, Implemented 38 38 @end example 39 39 … … 41 41 42 42 @example 43 pthread_detach(), Function 43 pthread_detach(), Function, Implemented 44 44 @end example 45 45 … … 47 47 48 48 @example 49 pthread_exit(), Function 49 pthread_exit(), Function, Implemented 50 50 @end example 51 51 … … 53 53 54 54 @example 55 pthread_self(), Function 55 pthread_self(), Function, Implemented 56 56 @end example 57 57 … … 59 59 60 60 @example 61 pthread_equal(), Function 61 pthread_equal(), Function, Implemented 62 62 @end example 63 63 … … 65 65 66 66 @example 67 pthread_once(), Function 67 pthread_once(), Function, Implemented 68 68 @end example 69 69 -
doc/posix1003.1/ch17.t
r2a087f3 r3cffce87 14 14 15 15 @example 16 pthread_key_create(), Function 16 pthread_key_create(), Function, Implemented 17 17 @end example 18 18 … … 20 20 21 21 @example 22 pthread_key_setspecific(), Function 23 pthread_key_getspecific(), Function 22 pthread_key_setspecific(), Function, Implemented 23 pthread_key_getspecific(), Function, Implemented 24 24 @end example 25 25 … … 27 27 28 28 @example 29 pthread_key_delete(), Function 29 pthread_key_delete(), Function, Implemented 30 30 @end example 31 31 -
doc/posix1003.1/ch18.t
r2a087f3 r3cffce87 24 24 25 25 @example 26 pthread_cancel(), Function 26 pthread_cancel(), Function, Implemented 27 27 @end example 28 28 … … 30 30 31 31 @example 32 pthread_setcancelstate(), Function 33 pthread_setcanceltype(), Function 34 pthread_testcancel(), Function 32 pthread_setcancelstate(), Function, Implemented 33 pthread_setcanceltype(), Function, Implemented 34 pthread_testcancel(), Function, Implemented 35 35 @end example 36 36 … … 38 38 39 39 @example 40 pthread_cleanup_push(), Function 41 pthread_cleanup_pop(), Function 40 pthread_cleanup_push(), Function, Implemented 41 pthread_cleanup_pop(), Function, Implemented 42 42 @end example 43 43 -
doc/posix1003.1/summarize
r2a087f3 r3cffce87 73 73 datatypes_partial=` wc3 "Type," "Partial Implementation" $*` 74 74 datatypes_dummy=` wc3 "Type," "Dummy Implementation" $*` 75 datatypes_untested=` wc3 "Type," "Untested Implementation" $*` 75 76 76 77 datatypes_sum=`addit ${datatypes_implemented} \ … … 104 105 echo " Partial : ${datatypes_partial}" 105 106 echo " Dummy : ${datatypes_dummy}" 107 echo " Untested : ${datatypes_untested}" 106 108 echo "@end example" 107 109 echo
Note: See TracChangeset
for help on using the changeset viewer.