1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/lib/Support/Unix
Frederich Munch 4d0cd2ca8d Allow clients to specify search order of DynamicLibraries.
Summary: Different JITs and other clients of LLVM may have different needs in how symbol resolution should occur.

Reviewers: v.g.vassilev, lhames, karies

Reviewed By: v.g.vassilev

Subscribers: pcanal, llvm-commits

Differential Revision: https://reviews.llvm.org/D33529

llvm-svn: 307849
2017-07-12 21:22:45 +00:00
..
COM.inc
DynamicLibrary.inc Allow clients to specify search order of DynamicLibraries. 2017-07-12 21:22:45 +00:00
Host.inc [Support] sys::getProcessTriple should return a macOS triple using 2017-07-07 09:53:47 +00:00
Memory.inc Implement AllocateRWX and ReleaseRWX for NetBSD 2017-06-18 16:52:32 +00:00
Mutex.inc
Path.inc Recommit "[Support] Add RetryAfterSignal helper function" 2017-06-29 13:15:31 +00:00
Process.inc Recommit "[Support] Add RetryAfterSignal helper function" 2017-06-29 13:15:31 +00:00
Program.inc [Solaris] get rid of _RESTRICT_KYWD warning during the build 2017-07-08 11:27:56 +00:00
README.txt
RWMutex.inc
Signals.inc Sort the remaining #include lines in include/... and lib/.... 2017-06-06 11:49:48 +00:00
Threading.inc Sort the remaining #include lines in include/... and lib/.... 2017-06-06 11:49:48 +00:00
ThreadLocal.inc
Unix.h Remove TimeValue usage from llvm/Support 2016-10-24 10:59:17 +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.