Changeset 34683fee in rtems
- Timestamp:
- 03/16/98 17:08:52 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- aedf452
- Parents:
- 53d804ff
- Location:
- doc/posix1003.1
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix1003.1/ch03.t
r53d804ff r34683fee 14 14 15 15 @example 16 fork(), Unimplementable16 fork(), Function, Unimplementable 17 17 @end example 18 18 … … 21 21 22 22 @example 23 execl(), Unimplementable, Requires Processes24 execv(), Unimplementable, Requires Processes25 execle(), Unimplementable, Requires Processes26 execve(), Unimplementable, Requires Processes27 execlp(), Unimplementable, Requires Processes28 execvp(), Unimplementable, Requires Processes23 execl(), Function, Unimplementable, Requires Processes 24 execv(), Function, Unimplementable, Requires Processes 25 execle(), Function, Unimplementable, Requires Processes 26 execve(), Function, Unimplementable, Requires Processes 27 execlp(), Function, Unimplementable, Requires Processes 28 execvp(), Function, Unimplementable, Requires Processes 29 29 @end example 30 30 … … 32 32 33 33 @example 34 pthread_atfork(), Unimplementable, Requires Processes34 pthread_atfork(), Function, Unimplementable, Requires Processes 35 35 @end example 36 36 … … 40 40 41 41 @example 42 wait(), Unimplementable, Requires Processes43 waitpid(), Unimplementable, Requires Processes42 wait(), Function, Unimplementable, Requires Processes 43 waitpid(), Function, Unimplementable, Requires Processes 44 44 @end example 45 45 … … 47 47 48 48 @example 49 _exit(), Unimplemented49 _exit(), Function, Unimplemented 50 50 @end example 51 51 … … 57 57 58 58 @example 59 kill(), Implemented59 kill(), Function, Implemented 60 60 @end example 61 61 … … 63 63 64 64 @example 65 sigemptyset(), Implemented66 sigfillset(), Implemented67 sigaddset(), Implemented68 sigdelset(), Implemented69 sigismember(), Implemented65 sigemptyset(), Function, Implemented 66 sigfillset(), Function, Implemented 67 sigaddset(), Function, Implemented 68 sigdelset(), Function, Implemented 69 sigismember(), Function, Implemented 70 70 @end example 71 71 … … 73 73 74 74 @example 75 sigaction(), Implemented75 sigaction(), Function, Implemented 76 76 @end example 77 77 … … 79 79 80 80 @example 81 pthread_sigmask(), Implemented82 sigprocmask(), Implemented81 pthread_sigmask(), Function, Implemented 82 sigprocmask(), Function, Implemented 83 83 @end example 84 84 … … 86 86 87 87 @example 88 sigpending(), Implemented88 sigpending(), Function, Implemented 89 89 @end example 90 90 … … 92 92 93 93 @example 94 sigsuspend(), Implemented94 sigsuspend(), Function, Implemented 95 95 @end example 96 96 … … 98 98 99 99 @example 100 sigwait(), Implemented101 sigwaitinfo(), Implemented102 sigtimedwait(), Implemented100 sigwait(), Function, Implemented 101 sigwaitinfo(), Function, Implemented 102 sigtimedwait(), Function, Implemented 103 103 @end example 104 104 … … 106 106 107 107 @example 108 sigqueue(), Implemented108 sigqueue(), Function, Implemented 109 109 @end example 110 110 … … 112 112 113 113 @example 114 pthread_kill(), Implemented114 pthread_kill(), Function, Implemented 115 115 @end example 116 116 … … 120 120 121 121 @example 122 alarm(), Implemented122 alarm(), Function, Implemented 123 123 @end example 124 124 … … 126 126 127 127 @example 128 pause(), Implemented128 pause(), Function, Implemented 129 129 @end example 130 130 … … 132 132 133 133 @example 134 sleep(), Implemented134 sleep(), Function, Implemented 135 135 @end example -
doc/posix1003.1/ch04.t
r53d804ff r34683fee 14 14 15 15 @example 16 getpid() 17 getppid() 16 getpid(), Function 17 getppid(), Function 18 18 @end example 19 19 … … 23 23 24 24 @example 25 getuid() 26 geteuid() 27 getgid() 28 getegid() 25 getuid(), Function 26 geteuid(), Function 27 getgid(), Function 28 getegid(), Function 29 29 @end example 30 30 … … 32 32 33 33 @example 34 setuid() 35 setgid() 34 setuid(), Function 35 setgid(), Function 36 36 @end example 37 37 … … 39 39 40 40 @example 41 getgroups() 41 getgroups(), Function 42 42 @end example 43 43 … … 45 45 46 46 @example 47 getlogin() 48 getlogin_r() 47 getlogin(), Function 48 getlogin_r(), Function 49 49 @end example 50 50 … … 54 54 55 55 @example 56 getpgrp() 56 getpgrp(), Function 57 57 @end example 58 58 … … 60 60 61 61 @example 62 setsid() 62 setsid(), Function 63 63 @end example 64 64 … … 66 66 67 67 @example 68 setpgid() 68 setpgid(), Function 69 69 @end example 70 70 … … 74 74 75 75 @example 76 uname() 76 uname(), Function 77 77 @end example 78 78 … … 82 82 83 83 @example 84 time() 84 time(), Function 85 85 @end example 86 86 … … 88 88 89 89 @example 90 times() 90 times(), Function 91 91 @end example 92 92 … … 96 96 97 97 @example 98 getenv() 98 getenv(), Function 99 99 @end example 100 100 … … 104 104 105 105 @example 106 ctermid() 106 ctermid(), Function 107 107 @end example 108 108 … … 110 110 111 111 @example 112 ttyname() 113 ttyname_r() 114 isatty() 112 ttyname(), Function 113 ttyname_r(), Function 114 isatty(), Function 115 115 @end example 116 116 … … 120 120 121 121 @example 122 sysconf() 122 sysconf(), Function 123 123 @end example -
doc/posix1003.1/ch05.t
r53d804ff r34683fee 16 16 17 17 @example 18 opendir() 19 readdir() 20 readdir_r() 21 rewinddir() 22 closedir() 18 opendir(), Function 19 readdir(), Function 20 readdir_r(), Function 21 rewinddir(), Function 22 closedir(), Function 23 23 @end example 24 24 … … 28 28 29 29 @example 30 chdir() 30 chdir(), Function 31 31 @end example 32 32 … … 34 34 35 35 @example 36 getcwd() 36 getcwd(), Function 37 37 @end example 38 38 … … 42 42 43 43 @example 44 open() 44 open(), Function 45 45 @end example 46 46 … … 48 48 49 49 @example 50 creat() 50 creat(), Function 51 51 @end example 52 52 … … 54 54 55 55 @example 56 umask() 56 umask(), Function 57 57 @end example 58 58 … … 60 60 61 61 @example 62 link() 62 link(), Function 63 63 @end example 64 64 … … 68 68 69 69 @example 70 mkdir() 70 mkdir(), Function 71 71 @end example 72 72 … … 74 74 75 75 @example 76 mkfifo() 76 mkfifo(), Function 77 77 @end example 78 78 … … 82 82 83 83 @example 84 unlink() 84 unlink(), Function 85 85 @end example 86 86 … … 88 88 89 89 @example 90 rmdir() 90 rmdir(), Function 91 91 @end example 92 92 … … 94 94 95 95 @example 96 rename() 96 rename(), Function 97 97 @end example 98 98 … … 104 104 105 105 @example 106 stat() 107 fstat() 106 stat(), Function 107 fstat(), Function 108 108 @end example 109 109 … … 111 111 112 112 @example 113 access() 113 access(), Function 114 114 @end example 115 115 … … 117 117 118 118 @example 119 chmod() 120 fchmod() 119 chmod(), Function 120 fchmod(), Function 121 121 @end example 122 122 … … 124 124 125 125 @example 126 chown() 126 chown(), Function 127 127 @end example 128 128 … … 130 130 131 131 @example 132 utime() 132 utime(), Function 133 133 @end example 134 134 … … 136 136 137 137 @example 138 ftruncate() 138 ftruncate(), Function 139 139 @end example 140 140 … … 142 142 143 143 @example 144 pathconf() 145 fpathconf() 144 pathconf(), Function 145 fpathconf(), Function 146 146 @end example 147 147 -
doc/posix1003.1/ch06.t
r53d804ff r34683fee 14 14 15 15 @example 16 pipe() 16 pipe(), Function 17 17 @end example 18 18 … … 22 22 23 23 @example 24 dup() 25 dup2() 24 dup(), Function 25 dup2(), Function 26 26 @end example 27 27 … … 31 31 32 32 @example 33 close() 33 close(), Function 34 34 @end example 35 35 … … 39 39 40 40 @example 41 read() 41 read(), Function 42 42 @end example 43 43 … … 45 45 46 46 @example 47 write() 47 write(), Function 48 48 @end example 49 49 … … 55 55 56 56 @example 57 fcntl() 57 fcntl(), Function 58 58 @end example 59 59 … … 61 61 62 62 @example 63 lseek() 63 lseek(), Function 64 64 @end example 65 65 … … 69 69 70 70 @example 71 fsync() 71 fsync(), Function 72 72 @end example 73 73 … … 75 75 76 76 @example 77 fdatasync() 77 fdatasync(), Function 78 78 @end example 79 79 … … 85 85 86 86 @example 87 aio_read() 87 aio_read(), Function 88 88 @end example 89 89 … … 91 91 92 92 @example 93 aio_write() 93 aio_write(), Function 94 94 @end example 95 95 … … 97 97 98 98 @example 99 aio_listio() 99 aio_listio(), Function 100 100 @end example 101 101 … … 103 103 104 104 @example 105 aio_error() 105 aio_error(), Function 106 106 @end example 107 107 … … 109 109 110 110 @example 111 aio_return() 111 aio_return(), Function 112 112 @end example 113 113 … … 115 115 116 116 @example 117 aio_cancel() 117 aio_cancel(), Function 118 118 @end example 119 119 … … 121 121 122 122 @example 123 aio_suspend() 123 aio_suspend(), Function 124 124 @end example 125 125 … … 127 127 128 128 @example 129 aio_fsync() 129 aio_fsync(), Function 130 130 @end example 131 131 -
doc/posix1003.1/ch07.t
r53d804ff r34683fee 68 68 69 69 @example 70 tcgetattr() 71 tcsetattr() 70 tcgetattr(), Function 71 tcsetattr(), Function 72 72 @end example 73 73 … … 75 75 76 76 @example 77 tcsendbreak() 78 tcdrain() 79 tcflush() 80 tcflow() 77 tcsendbreak(), Function 78 tcdrain(), Function 79 tcflush(), Function 80 tcflow(), Function 81 81 @end example 82 82 … … 84 84 85 85 @example 86 tcgetprgrp() 86 tcgetprgrp(), Function 87 87 @end example 88 88 … … 90 90 91 91 @example 92 tcsetprgrp() 92 tcsetprgrp(), Function 93 93 @end example 94 94 -
doc/posix1003.1/ch08.t
r53d804ff r34683fee 14 14 15 15 @example 16 assert() 16 assert(), Function 17 17 @end example 18 18 … … 20 20 21 21 @example 22 isalnum() 23 isalpha() 24 iscntrl() 25 isdigit() 26 isgraph() 27 islower() 28 isprint() 29 ispunct() 30 isspace() 31 isupper() 32 isxdigit() 33 tolower() 34 toupper() 22 isalnum(), Function 23 isalpha(), Function 24 iscntrl(), Function 25 isdigit(), Function 26 isgraph(), Function 27 islower(), Function 28 isprint(), Function 29 ispunct(), Function 30 isspace(), Function 31 isupper(), Function 32 isxdigit(), Function 33 tolower(), Function 34 toupper(), Function 35 35 @end example 36 36 … … 38 38 39 39 @example 40 setlocale() 40 setlocale(), Function 41 41 @end example 42 42 … … 44 44 45 45 @example 46 acos() 47 asin() 48 atan() 49 atan2() 50 cos() 51 sin() 52 tan() 53 cosh() 54 sinh() 55 tanh() 56 exp() 57 frexp() 58 ldexp() 59 log() 60 log10() 61 modf() 62 pow() 63 sqrt() 64 ceil() 65 fabs() 66 floor() 67 fmod() 46 acos(), Function 47 asin(), Function 48 atan(), Function 49 atan2(), Function 50 cos(), Function 51 sin(), Function 52 tan(), Function 53 cosh(), Function 54 sinh(), Function 55 tanh(), Function 56 exp(), Function 57 frexp(), Function 58 ldexp(), Function 59 log(), Function 60 log10(), Function 61 modf(), Function 62 pow(), Function 63 sqrt(), Function 64 ceil(), Function 65 fabs(), Function 66 floor(), Function 67 fmod(), Function 68 68 @end example 69 69 … … 71 71 72 72 @example 73 setjmp() 74 longjmp() 73 setjmp(), Function 74 longjmp(), Function 75 75 @end example 76 76 … … 78 78 79 79 @example 80 clearerr() 81 fclose() 82 feof() 83 ferror() 84 fflush() 85 fgetc() 86 fgets() 87 fopen() 88 fputc() 89 fputs() 90 fread() 91 freopen() 92 fseek() 93 ftell() 94 fwrite() 95 getc() 96 getchar() 97 gets() 98 perror() 99 printf() 100 fprintf() 101 sprintf() 102 putc() 103 putchar() 104 puts() 105 remove() 106 rename() 107 rewind() 108 scanf() 109 fscanf() 110 sscanf() 111 setbuf() 112 tmpfile() 113 tmpnam() 114 ungetc() 80 clearerr(), Function 81 fclose(), Function 82 feof(), Function 83 ferror(), Function 84 fflush(), Function 85 fgetc(), Function 86 fgets(), Function 87 fopen(), Function 88 fputc(), Function 89 fputs(), Function 90 fread(), Function 91 freopen(), Function 92 fseek(), Function 93 ftell(), Function 94 fwrite(), Function 95 getc(), Function 96 getchar(), Function 97 gets(), Function 98 perror(), Function 99 printf(), Function 100 fprintf(), Function 101 sprintf(), Function 102 putc(), Function 103 putchar(), Function 104 puts(), Function 105 remove(), Function 106 rename(), Function 107 rewind(), Function 108 scanf(), Function 109 fscanf(), Function 110 sscanf(), Function 111 setbuf(), Function 112 tmpfile(), Function 113 tmpnam(), Function 114 ungetc(), Function 115 115 @end example 116 116 … … 118 118 119 119 @example 120 abs() 121 atof() 122 atoi() 123 atol() 124 rand() 125 srand() 126 calloc() 127 free() 128 malloc() 129 realloc() 130 abort() 131 exit() 132 getenv() 133 bsearch() 134 qsort() 120 abs(), Function 121 atof(), Function 122 atoi(), Function 123 atol(), Function 124 rand(), Function 125 srand(), Function 126 calloc(), Function 127 free(), Function 128 malloc(), Function 129 realloc(), Function 130 abort(), Function 131 exit(), Function 132 getenv(), Function 133 bsearch(), Function 134 qsort(), Function 135 135 @end example 136 136 … … 138 138 139 139 @example 140 strcpy() 141 strncpy() 142 strcat() 143 strncat() 144 strcmp() 145 strncmp() 146 strchr() 147 strcspn() 148 strpbrk() 149 strrchr() 150 strspn() 151 strstr() 152 strtok() 153 strlen() 140 strcpy(), Function 141 strncpy(), Function 142 strcat(), Function 143 strncat(), Function 144 strcmp(), Function 145 strncmp(), Function 146 strchr(), Function 147 strcspn(), Function 148 strpbrk(), Function 149 strrchr(), Function 150 strspn(), Function 151 strstr(), Function 152 strtok(), Function 153 strlen(), Function 154 154 @end example 155 155 … … 157 157 158 158 @example 159 time() 160 asctime() 161 ctime() 162 gmtime() 163 localtime() 164 mktime() 165 strftime() 159 time(), Function 160 asctime(), Function 161 ctime(), Function 162 gmtime(), Function 163 localtime(), Function 164 mktime(), Function 165 strftime(), Function 166 166 @end example 167 167 … … 175 175 176 176 @example 177 fileno() 177 fileno(), Function 178 178 @end example 179 179 … … 181 181 182 182 @example 183 fdopen() 183 fdopen(), Function 184 184 @end example 185 185 … … 193 193 194 194 @example 195 flockfile() 196 ftrylockfile() 197 funlockfile() 195 flockfile(), Function 196 ftrylockfile(), Function 197 funlockfile(), Function 198 198 @end example 199 199 … … 201 201 202 202 @example 203 getc_unlocked() 204 getchar_unlocked() 205 putc_unlocked() 206 putchar_unlocked() 203 getc_unlocked(), Function 204 getchar_unlocked(), Function 205 putc_unlocked(), Function 206 putchar_unlocked(), Function 207 207 @end example 208 208 … … 212 212 213 213 @example 214 sigsetjmp() 215 siglongjmp() 214 sigsetjmp(), Function 215 siglongjmp(), Function 216 216 @end example 217 217 … … 219 219 220 220 @example 221 tzset() 221 tzset(), Function 222 222 @end example 223 223 … … 225 225 226 226 @example 227 strtok_r() 227 strtok_r(), Function 228 228 @end example 229 229 … … 231 231 232 232 @example 233 asctime_r() 233 asctime_r(), Function 234 234 @end example 235 235 … … 237 237 238 238 @example 239 ctime_r() 239 ctime_r(), Function 240 240 @end example 241 241 … … 243 243 244 244 @example 245 gmtime_r() 245 gmtime_r(), Function 246 246 @end example 247 247 … … 249 249 250 250 @example 251 localtime_r() 251 localtime_r(), Function 252 252 @end example 253 253 … … 255 255 256 256 @example 257 rand_r() 258 @end example 259 260 257 rand_r(), Function 258 @end example 259 260 -
doc/posix1003.1/ch09.t
r53d804ff r34683fee 16 16 17 17 @example 18 getgrgid() 19 getgrgid_r() 20 getgrname() 21 getgrnam_r() 18 getgrgid(), Function 19 getgrgid_r(), Function 20 getgrname(), Function 21 getgrnam_r(), Function 22 22 @end example 23 23 … … 25 25 26 26 @example 27 getpwuid() 28 getpwuid_r() 29 getpwnam() 30 getpwnam_r() 27 getpwuid(), Function 28 getpwuid_r(), Function 29 getpwnam(), Function 30 getpwnam_r(), Function 31 31 @end example 32 32 -
doc/posix1003.1/ch11.t
r53d804ff r34683fee 16 16 17 17 @example 18 sem_init() 18 sem_init(), Function 19 19 @end example 20 20 … … 22 22 23 23 @example 24 sem__destroy() 24 sem__destroy(), Function 25 25 @end example 26 26 … … 28 28 29 29 @example 30 sem_open() 30 sem_open(), Function 31 31 @end example 32 32 … … 34 34 35 35 @example 36 sem_close() 36 sem_close(), Function 37 37 @end example 38 38 … … 40 40 41 41 @example 42 sem_unlink() 42 sem_unlink(), Function 43 43 @end example 44 44 … … 46 46 47 47 @example 48 sem_wait() 49 sem_trywait() 48 sem_wait(), Function 49 sem_trywait(), Function 50 50 @end example 51 51 … … 53 53 54 54 @example 55 sem_post() 55 sem_post(), Function 56 56 @end example 57 57 … … 59 59 60 60 @example 61 sem_getvalue() 61 sem_getvalue(), Function 62 62 @end example 63 63 … … 67 67 68 68 @example 69 pthread_mutexattr_init() 70 pthread_mutexattr_destroy() 71 pthread_mutexattr_getpshared() 72 pthread_mutexattr_setpshared() 69 pthread_mutexattr_init(), Function 70 pthread_mutexattr_destroy(), Function 71 pthread_mutexattr_getpshared(), Function 72 pthread_mutexattr_setpshared(), Function 73 73 @end example 74 74 … … 76 76 77 77 @example 78 pthread_mutex_init() 79 pthread_mutex_destroy() 78 pthread_mutex_init(), Function 79 pthread_mutex_destroy(), Function 80 80 @end example 81 81 … … 83 83 84 84 @example 85 pthread_mutex_lock() 86 pthread_mutex_trylock() 87 pthread_mutex_unlock() 85 pthread_mutex_lock(), Function 86 pthread_mutex_trylock(), Function 87 pthread_mutex_unlock(), Function 88 88 @end example 89 89 … … 93 93 94 94 @example 95 pthread_condattr_init() 96 pthread_condattr_destroy() 97 pthread_condattr_getpshared() 98 pthread_condattr_setpshared() 95 pthread_condattr_init(), Function 96 pthread_condattr_destroy(), Function 97 pthread_condattr_getpshared(), Function 98 pthread_condattr_setpshared(), Function 99 99 @end example 100 100 … … 102 102 103 103 @example 104 pthread_cond_init() 105 pthread_cond_destroy() 104 pthread_cond_init(), Function 105 pthread_cond_destroy(), Function 106 106 @end example 107 107 … … 109 109 110 110 @example 111 pthread_cond_signal() 112 pthread_cond_broadcast() 111 pthread_cond_signal(), Function 112 pthread_cond_broadcast(), Function 113 113 @end example 114 114 … … 116 116 117 117 @example 118 pthread_cond_wait() 119 pthread_cond_timedwait() 118 pthread_cond_wait(), Function 119 pthread_cond_timedwait(), Function 120 120 @end example 121 121 -
doc/posix1003.1/ch12.t
r53d804ff r34683fee 14 14 15 15 @example 16 mlockall() 17 munlockall() 16 mlockall(), Function 17 munlockall(), Function 18 18 @end example 19 19 … … 21 21 22 22 @example 23 mlock() 24 munlock() 23 mlock(), Function 24 munlock(), Function 25 25 @end example 26 26 … … 30 30 31 31 @example 32 mmap() 32 mmap(), Function 33 33 @end example 34 34 … … 36 36 37 37 @example 38 munmap() 38 munmap(), Function 39 39 @end example 40 40 … … 42 42 43 43 @example 44 mprotect() 44 mprotect(), Function 45 45 @end example 46 46 … … 48 48 49 49 @example 50 msync() 50 msync(), Function 51 51 @end example 52 52 … … 56 56 57 57 @example 58 shm_open() 58 shm_open(), Function 59 59 @end example 60 60 … … 62 62 63 63 @example 64 shm_unlink() 64 shm_unlink(), Function 65 65 @end example -
doc/posix1003.1/ch13.t
r53d804ff r34683fee 24 24 25 25 @example 26 sched_setparam() 26 sched_setparam(), Function 27 27 @end example 28 28 … … 30 30 31 31 @example 32 sched_getparam() 32 sched_getparam(), Function 33 33 @end example 34 34 … … 36 36 37 37 @example 38 sched_setscheduler() 38 sched_setscheduler(), Function 39 39 @end example 40 40 … … 42 42 43 43 @example 44 sched_getscheduler() 44 sched_getscheduler(), Function 45 45 @end example 46 46 … … 48 48 49 49 @example 50 sched_yield() 50 sched_yield(), Function 51 51 @end example 52 52 … … 54 54 55 55 @example 56 sched_get_priority_max() 57 sched_get_priority_min() 58 sched_get_priority_rr_get_interval() 56 sched_get_priority_max(), Function 57 sched_get_priority_min(), Function 58 sched_get_priority_rr_get_interval(), Function 59 59 @end example 60 60 … … 74 74 75 75 @example 76 pthread_attr_setscope() 77 pthread_attr_getscope() 78 pthread_attr_setinheritsched() 79 pthread_attr_getinheritsched() 80 pthread_attr_setschedpolicy() 81 pthread_attr_getschedpolicy() 82 pthread_attr_setschedparam() 83 pthread_attr_getschedparam() 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 84 84 @end example 85 85 … … 87 87 88 88 @example 89 pthread_setschedparam() 90 pthread_getschedparam() 89 pthread_setschedparam(), Function 90 pthread_getschedparam(), Function 91 91 @end example 92 92 … … 96 96 97 97 @example 98 pthread_mutexattr_setprotocol() 99 pthread_mutexattr_getprotocol() 100 pthread_mutexattr_setpriceiling() 101 pthread_mutexattr_getpriceiling() 98 pthread_mutexattr_setprotocol(), Function 99 pthread_mutexattr_getprotocol(), Function 100 pthread_mutexattr_setpriceiling(), Function 101 pthread_mutexattr_getpriceiling(), Function 102 102 @end example 103 103 … … 105 105 106 106 @example 107 pthread_mutex_setprioceiling() 108 pthread_mutex_getprioceiling() 107 pthread_mutex_setprioceiling(), Function 108 pthread_mutex_getprioceiling(), Function 109 109 @end example 110 110 -
doc/posix1003.1/ch14.t
r53d804ff r34683fee 24 24 25 25 @example 26 clock_settime() 27 clock_gettime() 28 clock_getres() 26 clock_settime(), Function 27 clock_gettime(), Function 28 clock_getres(), Function 29 29 @end example 30 30 … … 32 32 33 33 @example 34 timer_create() 34 timer_create(), Function 35 35 @end example 36 36 … … 38 38 39 39 @example 40 timer_delete() 40 timer_delete(), Function 41 41 @end example 42 42 … … 44 44 45 45 @example 46 timer_settime() 47 timer_gettime() 48 timer_getoverrun() 46 timer_settime(), Function 47 timer_gettime(), Function 48 timer_getoverrun(), Function 49 49 @end example 50 50 … … 52 52 53 53 @example 54 nanosleep() 54 nanosleep(), Function 55 55 @end example 56 56 -
doc/posix1003.1/ch15.t
r53d804ff r34683fee 18 18 19 19 @example 20 mq_open() 20 mq_open(), Function 21 21 @end example 22 22 … … 24 24 25 25 @example 26 mq_close() 26 mq_close(), Function 27 27 @end example 28 28 … … 36 36 37 37 @example 38 mq_send() 38 mq_send(), Function 39 39 @end example 40 40 … … 42 42 43 43 @example 44 mq_receive() 44 mq_receive(), Function 45 45 @end example 46 46 … … 48 48 49 49 @example 50 mq_notify() 50 mq_notify(), Function 51 51 @end example 52 52 … … 54 54 55 55 @example 56 mq_setattr() 56 mq_setattr(), Function 57 57 @end example 58 58 … … 60 60 61 61 @example 62 mq_getattr() 62 mq_getattr(), Function 63 63 @end example 64 64 -
doc/posix1003.1/ch16.t
r53d804ff r34683fee 16 16 17 17 @example 18 pthread_attr_init() 19 pthread_attr_destroy() 20 pthread_attr_setstacksize() 21 pthread_attr_getstacksize() 22 pthread_attr_setstackaddr() 23 pthread_attr_getstackaddr() 24 pthread_attr_setdetachstate() 25 pthread_attr_getdetachstate() 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 26 26 @end example 27 27 … … 29 29 30 30 @example 31 pthread_create() 31 pthread_create(), Function 32 32 @end example 33 33 … … 35 35 36 36 @example 37 pthread_join() 37 pthread_join(), Function 38 38 @end example 39 39 … … 41 41 42 42 @example 43 pthread_detach() 43 pthread_detach(), Function 44 44 @end example 45 45 … … 47 47 48 48 @example 49 pthread_exit() 49 pthread_exit(), Function 50 50 @end example 51 51 … … 53 53 54 54 @example 55 pthread_self() 55 pthread_self(), Function 56 56 @end example 57 57 … … 59 59 60 60 @example 61 pthread_equal() 61 pthread_equal(), Function 62 62 @end example 63 63 … … 65 65 66 66 @example 67 pthread_once() 67 pthread_once(), Function 68 68 @end example 69 69 -
doc/posix1003.1/ch17.t
r53d804ff r34683fee 14 14 15 15 @example 16 pthread_key_create() 16 pthread_key_create(), Function 17 17 @end example 18 18 … … 20 20 21 21 @example 22 pthread_key_setspecific() 23 pthread_key_getspecific() 22 pthread_key_setspecific(), Function 23 pthread_key_getspecific(), Function 24 24 @end example 25 25 … … 27 27 28 28 @example 29 pthread_key_delete() 29 pthread_key_delete(), Function 30 30 @end example 31 31 -
doc/posix1003.1/ch18.t
r53d804ff r34683fee 24 24 25 25 @example 26 pthread_cancel() 26 pthread_cancel(), Function 27 27 @end example 28 28 … … 30 30 31 31 @example 32 pthread_setcancelstate() 33 pthread_setcanceltype() 34 pthread_testcancel() 32 pthread_setcancelstate(), Function 33 pthread_setcanceltype(), Function 34 pthread_testcancel(), Function 35 35 @end example 36 36 … … 38 38 39 39 @example 40 pthread_cleanup_push() 41 pthread_cleanup_pop() 40 pthread_cleanup_push(), Function 41 pthread_cleanup_pop(), Function 42 42 @end example 43 43
Note: See TracChangeset
for help on using the changeset viewer.