Changes in / [4a8f150:a25f64b]


Ignore:
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/FullBuild

    r4a8f150 ra25f64b  
    6060//===========================================================================================================
    6161
    62 def trigger_build(String cc, String arch, Bool new_ast) {
     62def trigger_build(String cc, String arch, boolean new_ast) {
    6363        def result = build job: 'Cforall/master',               \
    6464                parameters: [                                           \
  • benchmark/io/http/Makefile.am

    r4a8f150 ra25f64b  
    2323AM_CFLAGS = -O2 -Wall -Wextra -I$(srcdir) -lrt -pthread # -Werror
    2424AM_CFAFLAGS = -quiet -nodebug
     25AM_LDFLAGS = -quiet -nodebug
     26
     27CCLD = $(CFACC)
    2528
    2629EXTRA_PROGRAMS = httpforall .dummy_hack
  • benchmark/io/http/filecache.cfa

    r4a8f150 ra25f64b  
    199199                }
    200200                free(raw);
    201                 adelete(file_cache.size, file_cache.entries);
     201                adelete( file_cache.entries );
    202202                exit(0);
    203203        }
  • libcfa/src/bits/locks.hfa

    r4a8f150 ra25f64b  
    178178                }
    179179
    180                 void ^?{}(single_sem & this) {}
     180                void ^?{}(single_sem &) {}
    181181
    182182                bool wait(single_sem & this) {
     
    234234                }
    235235
    236                 void ^?{}(oneshot & this) {}
     236                void ^?{}(oneshot &) {}
    237237
    238238                // Wait for the post, return immidiately if it already happened.
     
    281281                }
    282282
    283                 void ^?{}(future_t & this) {}
     283                void ^?{}(future_t &) {}
    284284
    285285                // check if the future is available
  • libcfa/src/concurrency/iofwd.hfa

    r4a8f150 ra25f64b  
    3838        #define CFA_IO_ASYNC IOSQE_ASYNC
    3939#endif
     40
     41#if __OFF_T_MATCHES_OFF64_T
     42        typedef __off64_t off_t;
     43#else
     44        typedef __off_t off_t;
     45#endif
     46typedef __off64_t off64_t;
    4047
    4148struct cluster;
  • libcfa/src/concurrency/kernel.hfa

    r4a8f150 ra25f64b  
    159159
    160160static inline void  ?{}(io_cancellation & this) { this.target = -1u; }
    161 static inline void ^?{}(io_cancellation & this) {}
     161static inline void ^?{}(io_cancellation &) {}
    162162bool cancel(io_cancellation & this);
    163163
  • src/Concurrency/Keywords.cc

    r4a8f150 ra25f64b  
    405405                        dtor_decl = decl;
    406406                else if ( vtable_name.empty() )
     407                        ;
     408                else if( !decl->has_body() )
    407409                        ;
    408410                else if ( auto param = isMainFor( decl, cast_target ) ) {
Note: See TracChangeset for help on using the changeset viewer.