llvm-project/llvm/lib/Support/Unix
Fangrui Song 875adb4007 Host: Internalize computeHostNumPhysicalCores/computeHostNumHardwareThreads
Windows computeHostNumPhysicalCores is defined by Threading.cpp. Leave it
unchanged.
2022-11-23 21:09:45 -08:00
..
COM.inc
DynamicLibrary.inc
Host.inc
Memory.inc Canonicalize PowerPC detection macros to __powerpc__ 2022-11-06 17:29:45 -08:00
Path.inc [Support] Use thread safe version of getpwuid and getpwnam. 2022-11-14 17:48:44 +00:00
Process.inc ManagedStatic: remove many straightforward uses in llvm 2022-07-10 10:29:15 +02:00
Program.inc
README.txt
Signals.inc Revert "Reapply: Add an error message to the default SIGPIPE handler" 2022-11-18 11:17:25 -08:00
ThreadLocal.inc [Support] Remove unused/uncompilable !HAVE_PTHREAD_GETSPECIFIC code path 2022-04-11 14:20:33 -07:00
Threading.inc Host: Internalize computeHostNumPhysicalCores/computeHostNumHardwareThreads 2022-11-23 21:09:45 -08:00
Unix.h
Watchdog.inc

README.txt

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.