Changes in / [4a8f150:a25f64b]
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
r4a8f150 ra25f64b 60 60 //=========================================================================================================== 61 61 62 def trigger_build(String cc, String arch, Boolnew_ast) {62 def trigger_build(String cc, String arch, boolean new_ast) { 63 63 def result = build job: 'Cforall/master', \ 64 64 parameters: [ \ -
benchmark/io/http/Makefile.am
r4a8f150 ra25f64b 23 23 AM_CFLAGS = -O2 -Wall -Wextra -I$(srcdir) -lrt -pthread # -Werror 24 24 AM_CFAFLAGS = -quiet -nodebug 25 AM_LDFLAGS = -quiet -nodebug 26 27 CCLD = $(CFACC) 25 28 26 29 EXTRA_PROGRAMS = httpforall .dummy_hack -
benchmark/io/http/filecache.cfa
r4a8f150 ra25f64b 199 199 } 200 200 free(raw); 201 adelete( file_cache.size, file_cache.entries);201 adelete( file_cache.entries ); 202 202 exit(0); 203 203 } -
libcfa/src/bits/locks.hfa
r4a8f150 ra25f64b 178 178 } 179 179 180 void ^?{}(single_sem & this) {}180 void ^?{}(single_sem &) {} 181 181 182 182 bool wait(single_sem & this) { … … 234 234 } 235 235 236 void ^?{}(oneshot & this) {}236 void ^?{}(oneshot &) {} 237 237 238 238 // Wait for the post, return immidiately if it already happened. … … 281 281 } 282 282 283 void ^?{}(future_t & this) {}283 void ^?{}(future_t &) {} 284 284 285 285 // check if the future is available -
libcfa/src/concurrency/iofwd.hfa
r4a8f150 ra25f64b 38 38 #define CFA_IO_ASYNC IOSQE_ASYNC 39 39 #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 46 typedef __off64_t off64_t; 40 47 41 48 struct cluster; -
libcfa/src/concurrency/kernel.hfa
r4a8f150 ra25f64b 159 159 160 160 static inline void ?{}(io_cancellation & this) { this.target = -1u; } 161 static inline void ^?{}(io_cancellation & this) {}161 static inline void ^?{}(io_cancellation &) {} 162 162 bool cancel(io_cancellation & this); 163 163 -
src/Concurrency/Keywords.cc
r4a8f150 ra25f64b 405 405 dtor_decl = decl; 406 406 else if ( vtable_name.empty() ) 407 ; 408 else if( !decl->has_body() ) 407 409 ; 408 410 else if ( auto param = isMainFor( decl, cast_target ) ) {
Note: See TracChangeset
for help on using the changeset viewer.