llvm-6502/lib/Support/Unix
2014-06-11 22:53:00 +00:00
..
Host.inc Support: normalize the default triple on Unix 2014-03-30 03:22:37 +00:00
Memory.inc Uses generic_category instead of system_category. 2014-06-11 04:34:41 +00:00
Mutex.inc
Path.inc Implement get_magic with generic tools and inline it. 2014-06-11 22:53:00 +00:00
Process.inc Use error_code() instead of error_code::succes() 2014-05-31 01:37:45 +00:00
Program.inc There is no std::errc::success, remove the llvm one. 2014-05-31 03:21:04 +00:00
README.txt
RWMutex.inc Fix RWMutex to be thread-safe when pthread_rwlock is not available 2014-03-01 04:30:32 +00:00
Signals.inc [C++] Use 'nullptr'. 2014-04-28 04:05:08 +00:00
ThreadLocal.inc Make sys::ThreadLocal<> zero-initialized on non-thread builds (PR18205) 2013-12-19 20:32:44 +00:00
TimeValue.inc [C++] Use 'nullptr'. 2014-04-28 04:05:08 +00:00
Unix.h Fix build on Solaris 11. 2013-10-08 16:12:58 +00: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.