Changeset ae267366 for libcfa


Ignore:
Timestamp:
Feb 24, 2023, 3:31:50 PM (14 months ago)
Author:
Peter A. Buhr <pabuhr@…>
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.
Message:

fix merge conflict

Location:
libcfa/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/kernel/cluster.hfa

    rf883ef1 rae267366  
    146146}
    147147
    148 static struct {
    149         const unsigned readyq;
    150         const unsigned io;
     148const static struct {
     149        unsigned readyq;
     150        unsigned io;
    151151} __shard_factor = { 2, 1 };
    152152
  • libcfa/src/interpose.cfa

    rf883ef1 rae267366  
    1010// Created On       : Wed Mar 29 16:10:31 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Feb 19 20:44:32 2023
    13 // Update Count     : 184
     12// Last Modified On : Fri Feb 24 15:31:03 2023
     13// Update Count     : 185
    1414//
    1515
     
    101101                preload_libgcc();
    102102
    103 #pragma GCC diagnostic push
    104 #pragma GCC diagnostic ignored "-Wdiscarded-qualifiers"
     103                #pragma GCC diagnostic push
     104                #pragma GCC diagnostic ignored "-Wdiscarded-qualifiers"
    105105                INTERPOSE_LIBC( abort, version );
    106106                INTERPOSE_LIBC( exit , version );
    107 #pragma GCC diagnostic pop
     107                #pragma GCC diagnostic pop
    108108
    109109                if(__cfathreadabi_interpose_startup) __cfathreadabi_interpose_startup( do_interpose_symbol );
  • libcfa/src/limits.cfa

    rf883ef1 rae267366  
    1010// Created On       : Wed Apr  6 18:06:52 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Jan  8 18:53:17 2023
    13 // Update Count     : 86
     12// Last Modified On : Fri Feb 17 12:25:39 2023
     13// Update Count     : 87
    1414//
    1515
    16 // need _GNU_SOURCE to access long double M_*l in math.h
    1716#include <limits.h>
    1817#include <float.h>
Note: See TracChangeset for help on using the changeset viewer.