Changeset 3349409 in rtems


Ignore:
Timestamp:
03/16/98 18:08:38 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2a087f3
Parents:
aedf452
Message:

Added function status and data types

Location:
doc/posix1003.1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/posix1003.1/ch02.t

    raedf452 r3349409  
    1919@section Primitive System Types
    2020
     21@example
     22dev_t, Type,
     23gid_t, Type,
     24ino_t, Type,
     25mode_t, Type,
     26nlink_t, Type,
     27off_t, Type,
     28pid_t, Type,
     29pthread_t, Type,
     30pthread_attr_t, Type,
     31pthread_mutex_t, Type,
     32pthread_mutex_attr_t, Type,
     33pthread_cond_t, Type,
     34pthread_cond_attr_t, Type,
     35pthread_key_t, Type,
     36pthread_once_t, Type,
     37size_t, Type,
     38ssize_t, Type,
     39@end example
     40
    2141@section Environment Description
    2242
  • doc/posix1003.1/ch03.t

    raedf452 r3349409  
    5454@subsection Signal Concepts
    5555
     56@example
     57sigset_t, Type,
     58struct sigevent, Type,
     59union sigval, Type,
     60siginfo_t, Type,
     61@end example
     62
    5663@subsection Send a Signal to a Process
    5764
     
    7481@example
    7582sigaction(), Function, Implemented
     83sigaction, Type,
    7684@end example
    7785
  • doc/posix1003.1/ch04.t

    raedf452 r3349409  
    2323
    2424@example
    25 getuid(), Function
    26 geteuid(), Function
    27 getgid(), Function
    28 getegid(), Function
     25getuid(), Function, Dummy Implementation
     26geteuid(), Function, Dummy Implementation
     27getgid(), Function, Dummy Implementation
     28getegid(), Function, Dummy Implementation
    2929@end example
    3030
     
    3232
    3333@example
    34 setuid(), Function
    35 setgid(), Function
     34setuid(), Function, Dummy Implementation
     35setgid(), Function, Dummy Implementation
    3636@end example
    3737
     
    3939
    4040@example
    41 getgroups(), Function
     41getgroups(), Function, Dummy Implementation
    4242@end example
    4343
     
    4545
    4646@example
    47 getlogin(), Function
    48 getlogin_r(), Function
     47getlogin(), Function, Dummy Implementation
     48getlogin_r(), Function, Dummy Implementation
    4949@end example
    5050
     
    5454
    5555@example
    56 getpgrp(), Function
     56getpgrp(), Function, Dummy Implementation
    5757@end example
    5858
     
    6060
    6161@example
    62 setsid(), Function
     62setsid(), Function, Dummy Implementation
    6363@end example
    6464
     
    6666
    6767@example
    68 setpgid(), Function
     68setpgid(), Function, Dummy Implementation
    6969@end example
    7070
     
    7474
    7575@example
    76 uname(), Function
     76struct utsname, Type,
     77uname(), Function, Untested Implementation
    7778@end example
    7879
     
    8283
    8384@example
    84 time(), Function
     85time(), Function, Implemented
    8586@end example
    8687
     
    8889
    8990@example
    90 times(), Function
     91struct tms, Type,
     92times(), Function, Implemented
    9193@end example
     94
     95NOTE: times() always returns 0 for tms_stime, tms_cutime, and
     96tms_cstime fields of the @code{struct tms} returned.
    9297
    9398@section Environment Variables
     
    96101
    97102@example
    98 getenv(), Function
     103getenv(), Function, Implemented
    99104@end example
    100105
     
    104109
    105110@example
    106 ctermid(), Function
     111ctermid(), Function, Unimplemented
    107112@end example
    108113
     
    110115
    111116@example
    112 ttyname(), Function
    113 ttyname_r(), Function
    114 isatty(), Function
     117ttyname(), Function, Untested Implementation, assumes directory services
     118ttyname_r(), Unimplemented
     119isatty(), Function, Dummy Implementation
    115120@end example
    116121
     
    120125
    121126@example
    122 sysconf(), Function
     127sysconf(), Function, Not Implemented
    123128@end example
Note: See TracChangeset for help on using the changeset viewer.