Reid Spencer | 2f88a06 | 2004-08-26 05:58:20 +0000 | [diff] [blame] | 1 | llvm/lib/System/Unix README |
| 2 | =========================== |
| 3 | |
| 4 | This directory provides implementations of the lib/System classes that |
| 5 | are common to two or more variants of UNIX. For example, the directory |
| 6 | structure underneath this directory could look like this: |
| 7 | |
| 8 | Unix - only code that is truly generic to all UNIX platforms |
| 9 | Posix - code that is specific to Posix variants of UNIX |
Reid Spencer | bf3a4d2 | 2004-08-26 07:43:33 +0000 | [diff] [blame] | 10 | SUS - code that is specific to the Single Unix Specification |
Reid Spencer | 2f88a06 | 2004-08-26 05:58:20 +0000 | [diff] [blame] | 11 | SysV - code that is specific to System V variants of UNIX |
| 12 | |
| 13 | As a rule, only those directories actually needing to be created should be |
| 14 | created. Also, further subdirectories could be created to reflect versions of |
| 15 | the various standards. For example, under SUS there could be v1, v2, and v3 |
| 16 | subdirectories to reflect the three major versions of SUS. |