• Home
Name Date Size #Lines LOC

..--

Host.incD03-May-20241.9 KiB6451

Memory.incD03-May-20244.6 KiB152132

Mutex.incD03-May-20241,013 4436

Path.incD03-May-202423.6 KiB892783

PathV2.incD03-May-202419.9 KiB685583

Process.incD03-May-20249.4 KiB335292

Program.incD03-May-202412.4 KiB431376

README.txtD03-May-2024824 1713

RWMutex.incD03-May-20241.1 KiB4433

Signals.incD03-May-202411 KiB356296

ThreadLocal.incD03-May-20241.1 KiB2724

TimeValue.incD03-May-20241.8 KiB5747

Unix.hD03-May-20242.1 KiB8245

system_error.incD03-May-20241.2 KiB3530

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