opnsense-src/contrib/llvm-project/llvm/lib/Support/Unix
Dimitry Andric 04eeddc0aa Merge llvm-project main llvmorg-14-init-17616-g024a1fab5c35
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvmorg-14-init-17616-g024a1fab5c35.

PR:		261742
MFC after:	2 weeks
2022-05-14 13:44:34 +02:00
..
COM.inc
DynamicLibrary.inc
Host.inc Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp 2020-07-31 21:22:58 +00:00
Memory.inc Merge llvm-project main llvmorg-14-init-10186-gff7f2cfa959b 2022-05-14 13:43:05 +02:00
Path.inc Merge llvm-project main llvmorg-14-init-17616-g024a1fab5c35 2022-05-14 13:44:34 +02:00
Process.inc Merge llvm-project main llvmorg-14-init-10186-gff7f2cfa959b 2022-05-14 13:43:05 +02:00
Program.inc Merge llvm-project main llvmorg-14-init-10186-gff7f2cfa959b 2022-05-14 13:43:05 +02:00
README.txt
Signals.inc Merge llvm-project main llvmorg-13-init-16847-g88e66fa60ae5 2021-11-13 21:39:49 +01:00
Threading.inc Merge llvm-project main llvmorg-13-init-16847-g88e66fa60ae5 2021-11-13 21:39:49 +01:00
ThreadLocal.inc
Unix.h Merge llvm-project main llvmorg-14-init-10186-gff7f2cfa959b 2022-05-14 13:43:05 +02:00
Watchdog.inc

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.