Completed status pass on functions and data types.

This commit is contained in:
Joel Sherrill
1998-03-17 18:50:14 +00:00
parent 3cffce87d6
commit 6984a19876
12 changed files with 48 additions and 33 deletions

View File

@@ -19,25 +19,29 @@
@section Primitive System Types @section Primitive System Types
@example @example
dev_t, Type, dev_t, Type, Implemented
gid_t, Type, gid_t, Type, Implemented
ino_t, Type, ino_t, Type, Implemented
mode_t, Type, mode_t, Type, Implemented
nlink_t, Type, nlink_t, Type, Implemented
off_t, Type, off_t, Type, Implemented
pid_t, Type, pid_t, Type, Implemented
pthread_t, Type, pthread_t, Type, Implemented
pthread_attr_t, Type, pthread_attr_t, Type, Implemented
pthread_mutex_t, Type, pthread_mutex_t, Type, Implemented
pthread_mutex_attr_t, Type, pthread_mutex_attr_t, Type, Implemented
pthread_cond_t, Type, pthread_cond_t, Type, Implemented
pthread_cond_attr_t, Type, pthread_cond_attr_t, Type, Implemented
pthread_key_t, Type, pthread_key_t, Type, Implemented
pthread_once_t, Type, pthread_once_t, Type, Implemented
size_t, Type, size_t, Type, Implemented
ssize_t, Type, ssize_t, Type, Implemented
time_t, Type, Implemented
uid_t, Type, Implemented
@end example @end example
NOTE: time_t is not listed in this section but is used by many functions.
@section Environment Description @section Environment Description
@section C Language Definitions @section C Language Definitions

View File

@@ -54,10 +54,10 @@ _exit(), Function, Unimplemented
@subsection Signal Concepts @subsection Signal Concepts
@example @example
sigset_t, Type, sigset_t, Type, Implemented
struct sigevent, Type, struct sigevent, Type, Implemented
union sigval, Type, union sigval, Type, Implemented
siginfo_t, Type, siginfo_t, Type, Implemented
@end example @end example
@subsection Send a Signal to a Process @subsection Send a Signal to a Process
@@ -80,7 +80,7 @@ sigismember(), Function, Implemented
@example @example
sigaction(), Function, Implemented sigaction(), Function, Implemented
sigaction, Type, sigaction, Type, Implemented
@end example @end example
@subsection Examine and Change Blocked Signals @subsection Examine and Change Blocked Signals

View File

@@ -73,7 +73,7 @@ setpgid(), Function, Dummy Implementation
@subsection Get System Name @subsection Get System Name
@example @example
struct utsname, Type, struct utsname, Type, Untested Implementation
uname(), Function, Untested Implementation uname(), Function, Untested Implementation
@end example @end example
@@ -88,7 +88,7 @@ time(), Function, Implemented
@subsection Get Process Times @subsection Get Process Times
@example @example
struct tms, Type, struct tms, Type, Implemented
times(), Function, Implemented times(), Function, Implemented
@end example @end example

View File

@@ -134,7 +134,7 @@ chown(), Function, Unimplemented
@subsection Set File Access and Modification Times @subsection Set File Access and Modification Times
@example @example
struct utimbuf, Type, struct utimbuf, Type, Unimplemented
utime(), Function, Unimplemented utime(), Function, Unimplemented
@end example @end example

View File

@@ -83,7 +83,7 @@ fdatasync(), Function, Unimplemented
@subsection Data Definitions for Asynchronous Input and Output @subsection Data Definitions for Asynchronous Input and Output
@example @example
struct aiocb, Type, Dummy Implementation struct aiocb, Type, Untested Implementation
@end example @end example
@subsection Asynchronous Read @subsection Asynchronous Read

View File

@@ -77,6 +77,7 @@ longjmp(), Function, Implemented
ANSI C Section 4.9 --- Input/Output ANSI C Section 4.9 --- Input/Output
@example @example
FILE, Type, Implemented
clearerr(), Function, Implemented clearerr(), Function, Implemented
fclose(), Function, Implemented fclose(), Function, Implemented
feof(), Function, Implemented feof(), Function, Implemented
@@ -213,6 +214,7 @@ putchar_unlocked(), Function, Unimplemented
@subsection Nonlocal Jumps @subsection Nonlocal Jumps
@example @example
sigjmp_buf, Type, Unimplemented
sigsetjmp(), Function, Unimplemented sigsetjmp(), Function, Unimplemented
siglongjmp(), Function, Unimplemented siglongjmp(), Function, Unimplemented
@end example @end example

View File

@@ -15,7 +15,7 @@
@subsection Group Database Access @subsection Group Database Access
@example @example
struct group, Type, struct group, Type, Untested Implementation
getgrgid(), Function, Unimplemented getgrgid(), Function, Unimplemented
getgrgid_r(), Function, Unimplemented getgrgid_r(), Function, Unimplemented
getgrname(), Function, Unimplemented getgrname(), Function, Unimplemented
@@ -25,7 +25,7 @@ getgrnam_r(), Function, Unimplemented
@subsection User Database Access @subsection User Database Access
@example @example
struct passwd, Type, struct passwd, Type, Untested Implementation
getpwuid(), Function, Untested Implemented, assumes /etc/passwd exists getpwuid(), Function, Untested Implemented, assumes /etc/passwd exists
getpwuid_r(), Function, Unimplemented getpwuid_r(), Function, Unimplemented
getpwnam(), Function, Untested Implemented, assumes /etc/passwd exists getpwnam(), Function, Untested Implemented, assumes /etc/passwd exists

View File

@@ -13,14 +13,19 @@
@subsection Extended tar Format @subsection Extended tar Format
@example @example
tar format, Type, tar format, Type, Unimplemented
@end example @end example
NOTE: Requires <tar.h> which is not in newlib.
@subsection Extended cpio Format @subsection Extended cpio Format
@example @example
cpio format, Type, cpio format, Type, Unimplemented
@end example @end example
NOTE: POSIX does not require a header file or structure. RedHat Linux
5.0 does not have a <cpio.h> although Solaris 2.6 does.
@subsection Multiple Volumes @subsection Multiple Volumes

View File

@@ -10,6 +10,10 @@
@section Semaphore Characteristics @section Semaphore Characteristics
@example
sem_t, Type, Untested Implementation
@end example
@section Semaphore Functions @section Semaphore Functions
@subsection Initialize an Unnamed Semaphore @subsection Initialize an Unnamed Semaphore

View File

@@ -94,7 +94,7 @@ pthread_setschedparam(), Function, Implemented
pthread_getschedparam(), Function, Implemented pthread_getschedparam(), Function, Implemented
@end example @end example
@section Synchronization Scheduling, Implemented @section Synchronization Scheduling
@subsection Mutex Initialization Scheduling Attributes @subsection Mutex Initialization Scheduling Attributes

View File

@@ -14,7 +14,7 @@
@example @example
mqd_t, Type, Untested Implementation mqd_t, Type, Untested Implementation
mq_attr, Type, Untested Implementation struct mq_attr, Type, Untested Implementation
@end example @end example
@section Message Passing Functions @section Message Passing Functions

View File

@@ -120,7 +120,7 @@ This is the online version of the RTEMS POSIX 1003.1 Compliance Guide.
@c Need to copy the emacs stuff and "trailer stuff" (index, toc) into here @c Need to copy the emacs stuff and "trailer stuff" (index, toc) into here
@c @c
@node Command and Variable Index, Concept Index, Thread Cancellation Chapter, Top @node Command and Variable Index, Concept Index, Overall Summary, Top
@unnumbered Command and Variable Index @unnumbered Command and Variable Index
There are currently no Command and Variable Index entries. There are currently no Command and Variable Index entries.