Overview
Comment: | references__intel: new intel-specific task-safe variant of Natools.References |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ca01910925228be8a759afbb53ee09e2 |
User & Date: | nat on 2014-07-18 17:35:41 |
Other Links: | manifest | tags |
Context
2014-07-19
| ||
18:27 | Add pragma Preelaborable_Initialization throughout the code check-in: 3b9912ed66 user: nat tags: trunk | |
2014-07-18
| ||
17:35 | references__intel: new intel-specific task-safe variant of Natools.References check-in: ca01910925 user: nat tags: trunk | |
2014-07-17
| ||
19:37 | references__protected: task-safe portable variant of Natools.References, based on protected counters check-in: 66369eba6c user: nat tags: trunk | |
Changes
Modified natools.gpr from [636db3747c] to [3162d5a04a].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + + | project Natools is type Build_Type is ("Release", "Coverage"); Mode : Build_Type := external ("MODE", "Release"); |
︙ | |||
75 76 77 78 79 80 81 82 83 84 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | + + + + + | for body ("Natools.References") use "natools-references__unsafe.adb"; when "Portable" => for spec ("Natools.References") use "natools-references__protected.ads"; for body ("Natools.References") use "natools-references__protected.adb"; when "Intel" => for spec ("Natools.References") use "natools-references__intel.ads"; for body ("Natools.References") use "natools-references__intel.adb"; end case; end Naming; end Natools; |
Added src/natools-references__intel.adb version [bc469c4162].