opnsense-src/llvm/lib/Support/Unix
Dimitry Andric 706b4fc47b Vendor import of llvm-project master e26a78e70, the last commit before
the llvmorg-11-init tag, from which release/10.x was branched.
2020-01-17 20:45:01 +00:00
..
COM.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
DynamicLibrary.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
Host.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
Memory.inc Vendor import of llvm-project master e26a78e70, the last commit before 2020-01-17 20:45:01 +00:00
Path.inc Vendor import of llvm-project master e26a78e70, the last commit before 2020-01-17 20:45:01 +00:00
Process.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
Program.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
README.txt Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
Signals.inc Vendor import of llvm-project master e26a78e70, the last commit before 2020-01-17 20:45:01 +00:00
Threading.inc Vendor import of llvm-project master e26a78e70, the last commit before 2020-01-17 20:45:01 +00:00
ThreadLocal.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00
Unix.h Vendor import of llvm-project master e26a78e70, the last commit before 2020-01-17 20:45:01 +00:00
Watchdog.inc Copy llvm vendor/*/dist to vendor/llvm-project/master 2019-12-20 20:44:58 +00:00

llvm/lib/Support/Unix README
===========================

This directory provides implementations of the lib/System classes that
are common to two or more variants of UNIX. For example, the directory
structure underneath this directory could look like this:

Unix           - only code that is truly generic to all UNIX platforms
  Posix        - code that is specific to Posix variants of UNIX
  SUS          - code that is specific to the Single Unix Specification
  SysV         - code that is specific to System V variants of UNIX

As a rule, only those directories actually needing to be created should be
created. Also, further subdirectories could be created to reflect versions of
the various standards. For example, under SUS there could be v1, v2, and v3
subdirectories to reflect the three major versions of SUS.