freebsd-dev/contrib/llvm/lib/Support/Unix
Dimitry Andric 284c197886 Upgrade our copy of llvm/clang to 3.3 release.
Release notes are still in the works, these will follow soon.

MFC after:	1 month
2013-06-12 18:48:53 +00:00
..
Host.inc Upgrade our copy of llvm/clang to trunk r154661, in preparation of the 2012-04-16 21:23:25 +00:00
Memory.inc Upgrade our copy of llvm/clang to 3.3 release. 2013-06-12 18:48:53 +00:00
Mutex.inc
Path.inc Upgrade our copy of llvm/clang to r168974, from upstream's release_32 2012-12-03 19:24:08 +00:00
PathV2.inc Upgrade our copy of llvm/clang to 3.3 release. 2013-06-12 18:48:53 +00:00
Process.inc Upgrade our copy of llvm/clang to trunk r178860, in preparation of the 2013-04-12 17:57:40 +00:00
Program.inc Upgrade our copy of llvm/clang to 3.3 release. 2013-06-12 18:48:53 +00:00
README.txt
RWMutex.inc
Signals.inc Upgrade our copy of llvm/clang to 3.3 release. 2013-06-12 18:48:53 +00:00
system_error.inc
ThreadLocal.inc
TimeValue.inc Upgrade our copy of llvm/clang to trunk r178860, in preparation of the 2013-04-12 17:57:40 +00:00
Unix.h Upgrade our copy of llvm/clang to trunk r178860, in preparation of the 2013-04-12 17:57:40 +00:00
Watchdog.inc Upgrade our copy of llvm/clang to trunk r178860, in preparation of the 2013-04-12 17:57:40 +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.