Changeset ae267366 for libcfa/src
- Timestamp:
- Feb 24, 2023, 3:31:50 PM (22 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 2e77837
- Parents:
- f883ef1 (diff), f2a1cd2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- libcfa/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/cluster.hfa
rf883ef1 rae267366 146 146 } 147 147 148 static struct {149 constunsigned readyq;150 constunsigned io;148 const static struct { 149 unsigned readyq; 150 unsigned io; 151 151 } __shard_factor = { 2, 1 }; 152 152 -
libcfa/src/interpose.cfa
rf883ef1 rae267366 10 10 // Created On : Wed Mar 29 16:10:31 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Feb 19 20:44:32202313 // Update Count : 18 412 // Last Modified On : Fri Feb 24 15:31:03 2023 13 // Update Count : 185 14 14 // 15 15 … … 101 101 preload_libgcc(); 102 102 103 #pragma GCC diagnostic push104 #pragma GCC diagnostic ignored "-Wdiscarded-qualifiers"103 #pragma GCC diagnostic push 104 #pragma GCC diagnostic ignored "-Wdiscarded-qualifiers" 105 105 INTERPOSE_LIBC( abort, version ); 106 106 INTERPOSE_LIBC( exit , version ); 107 #pragma GCC diagnostic pop107 #pragma GCC diagnostic pop 108 108 109 109 if(__cfathreadabi_interpose_startup) __cfathreadabi_interpose_startup( do_interpose_symbol ); -
libcfa/src/limits.cfa
rf883ef1 rae267366 10 10 // Created On : Wed Apr 6 18:06:52 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jan 8 18:53:17202313 // Update Count : 8 612 // Last Modified On : Fri Feb 17 12:25:39 2023 13 // Update Count : 87 14 14 // 15 15 16 // need _GNU_SOURCE to access long double M_*l in math.h17 16 #include <limits.h> 18 17 #include <float.h>
Note: See TracChangeset
for help on using the changeset viewer.