• Home
Name Date Size #Lines LOC

..--

COM.incD03-May-2024994 2823

DynamicLibrary.incD03-May-20243.5 KiB136113

Host.incD03-May-20242.2 KiB6958

Memory.incD03-May-20247.5 KiB250200

Mutex.incD03-May-20241,013 4436

Path.incD03-May-202429.9 KiB1,023879

Process.incD03-May-202413.8 KiB461404

Program.incD03-May-202414.6 KiB498428

README.txtD03-May-2024824 1713

RWMutex.incD03-May-20241.5 KiB5239

Signals.incD03-May-202419.4 KiB582508

ThreadLocal.incD03-May-20242.2 KiB7260

Threading.incD03-May-20245.8 KiB215186

Unix.hD03-May-20242.9 KiB10762

Watchdog.incD03-May-2024811 3530

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