• Home
  • History
  • Annotate
  • only in /external/llvm/lib/Support/Unix/
NameDateSize

..12-Mar-20154 KiB

Host.inc12-Mar-20151.9 KiB

Memory.inc12-Mar-201510.9 KiB

Mutex.inc12-Mar-20151,013

Path.inc12-Mar-201519.7 KiB

Process.inc12-Mar-201511.4 KiB

Program.inc12-Mar-201513.6 KiB

README.txt12-Mar-2015824

RWMutex.inc12-Mar-20151.5 KiB

Signals.inc12-Mar-201512.2 KiB

ThreadLocal.inc12-Mar-20151.1 KiB

TimeValue.inc12-Mar-20151.9 KiB

Unix.h12-Mar-20152.1 KiB

Watchdog.inc12-Mar-2015778

README.txt

1llvm/lib/Support/Unix README
2===========================
3
4This directory provides implementations of the lib/System classes that
5are common to two or more variants of UNIX. For example, the directory
6structure underneath this directory could look like this:
7
8Unix           - only code that is truly generic to all UNIX platforms
9  Posix        - code that is specific to Posix variants of UNIX
10  SUS          - code that is specific to the Single Unix Specification
11  SysV         - code that is specific to System V variants of UNIX
12
13As a rule, only those directories actually needing to be created should be
14created. Also, further subdirectories could be created to reflect versions of
15the various standards. For example, under SUS there could be v1, v2, and v3
16subdirectories to reflect the three major versions of SUS.
17