opnsense-src/contrib/llvm/lib/Support/Unix
Dimitry Andric 640dd76f2c Merge llvm, clang, compiler-rt, libc++, lld, and lldb release_80 branch
r354130, resolve conflicts, and bump version numbers.
2019-02-15 21:44:42 +00:00
..
COM.inc Merge llvm trunk r238337 from ^/vendor/llvm/dist, resolve conflicts, and 2015-05-27 20:26:41 +00:00
DynamicLibrary.inc Merge llvm trunk r321017 to contrib/llvm. 2017-12-20 14:16:56 +00:00
Host.inc Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +00:00
Memory.inc Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +00:00
Mutex.inc Upgrade our copy of llvm/clang to r126079, from upstream's trunk. 2011-02-20 19:33:47 +00:00
Path.inc Merge llvm trunk r351319, resolve conflicts, and update FREEBSD-Xlist. 2019-01-20 11:41:25 +00:00
Process.inc Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_70 branch 2018-09-11 18:50:40 +00:00
Program.inc Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +00:00
README.txt Upgrade our copy of llvm/clang to r126079, from upstream's trunk. 2011-02-20 19:33:47 +00:00
RWMutex.inc Merge llvm 3.6.0rc1 from ^/vendor/llvm/dist, merge clang 3.6.0rc1 from 2015-01-25 23:36:55 +00:00
Signals.inc Merge llvm trunk r351319, resolve conflicts, and update FREEBSD-Xlist. 2019-01-20 11:41:25 +00:00
Threading.inc Merge llvm, clang, compiler-rt, libc++, lld, and lldb release_80 branch 2019-02-15 21:44:42 +00:00
ThreadLocal.inc Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +00:00
Unix.h Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +00:00
Watchdog.inc Merge llvm trunk r338150, and resolve conflicts. 2018-07-30 16:33:32 +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.