Changeset bb82c03 for src/libcfa
- Timestamp:
- Jan 11, 2017, 4:10:51 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 2162c2c
- Parents:
- ff2d7341
- Location:
- src/libcfa
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/concurrency/threads ¶
rff2d7341 rbb82c03 14 14 // Update Count : 0 15 15 // 16 17 #ifdef __CFORALL__18 16 19 17 #ifndef THREADS_H … … 75 73 coroutine* src = this_coroutine(); // optimization 76 74 77 assertf( src->last != 0, 75 assertf( src->last != 0, 78 76 "Attempt to suspend coroutine %.256s (%p) that has never been resumed.\n" 79 77 "Possible cause is a suspend executed in a member called by a coroutine user rather than by the coroutine main.", 80 78 src->name, src ); 81 assertf( src->last->notHalted, 79 assertf( src->last->notHalted, 82 80 "Attempt by coroutine %.256s (%p) to suspend back to terminated coroutine %.256s (%p).\n" 83 81 "Possible cause is terminated coroutine's main routine has already returned.", … … 100 98 // not resuming self ? 101 99 if ( src != dst ) { 102 assertf( dst->notHalted , 100 assertf( dst->notHalted , 103 101 "Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n" 104 102 "Possible cause is terminated coroutine's main routine has already returned.", … … 115 113 #endif //THREADS_H 116 114 117 #else118 #include_next <thread>119 #endif //__CFORALL__120 121 115 // Local Variables: // 122 116 // mode: c // -
TabularUnified src/libcfa/containers/vector ¶
rff2d7341 rbb82c03 13 13 // Update Count : 2 14 14 // 15 16 #ifdef __CFORALL__17 15 18 16 #ifndef VECTOR_H … … 170 168 #endif // VECTOR_H 171 169 172 #else173 #include_next <vector>174 #endif //__CFORALL__175 176 170 // Local Variables: // 177 171 // mode: c // -
TabularUnified src/libcfa/fstream ¶
rff2d7341 rbb82c03 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // fstream -- 7 // fstream -- 8 8 // 9 9 // Author : Peter A. Buhr … … 13 13 // Update Count : 88 14 14 // 15 16 #ifdef __CFORALL__17 15 18 16 #ifndef __FSTREAM_H__ … … 64 62 #endif // __FSTREAM_H__ 65 63 66 #else67 #include_next <fstream>68 #endif //__CFORALL__69 70 64 // Local Variables: // 71 65 // mode: c // 72 66 // tab-width: 4 // 73 67 // End: // 74 -
TabularUnified src/libcfa/iostream ¶
rff2d7341 rbb82c03 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // iostream -- 7 // iostream -- 8 8 // 9 9 // Author : Peter A. Buhr … … 13 13 // Update Count : 93 14 14 // 15 16 #ifdef __CFORALL__17 15 18 16 #ifndef __IOSTREAM_H__ … … 28 26 void sepReset( ostype *, _Bool ); // set separator and default state 29 27 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum) 30 const char * sepGet( ostype * ); // get separator string 28 const char * sepGet( ostype * ); // get separator string 31 29 _Bool sepDisable( ostype * ); // set default state to off, and return previous state 32 30 _Bool sepEnable( ostype * ); // set default state to on, and return previous state … … 128 126 #endif // __IOSTREAM_H 129 127 130 #else131 #include_next <iostream>132 #endif //__CFORALL__133 134 128 // Local Variables: // 135 129 // mode: c // -
TabularUnified src/libcfa/iterator ¶
rff2d7341 rbb82c03 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // iterator -- 7 // iterator -- 8 8 // 9 9 // Author : Richard C. Bilson … … 13 13 // Update Count : 9 14 14 // 15 16 #ifdef __CFORALL__17 15 18 16 #ifndef ITERATOR_H … … 48 46 #endif // ITERATOR_H 49 47 50 #else51 #include_next <iterator>52 #endif //__CFORALL__53 54 48 // Local Variables: // 55 49 // mode: c // -
TabularUnified src/libcfa/limits ¶
rff2d7341 rbb82c03 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo 3 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. 6 // 7 // limits -- 8 // 6 // 7 // limits -- 8 // 9 9 // Author : Peter A. Buhr 10 10 // Created On : Wed Apr 6 18:06:52 2016 … … 12 12 // Last Modified On : Wed Apr 6 21:08:16 2016 13 13 // Update Count : 6 14 // 15 16 #ifdef __CFORALL__ 14 // 17 15 18 16 #ifndef LIMITS_H … … 114 112 #endif // LIMITS_H 115 113 116 #else117 #include_next <limits>118 #endif //__CFORALL__119 120 114 // Local Variables: // 121 115 // mode: c // -
TabularUnified src/libcfa/math ¶
rff2d7341 rbb82c03 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo 3 3 // … … 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // math -- 8 // 7 // math -- 8 // 9 9 // Author : Peter A. Buhr 10 10 // Created On : Mon Apr 18 23:37:04 2016 … … 12 12 // Last Modified On : Sun Apr 24 12:45:02 2016 13 13 // Update Count : 59 14 // 15 16 #ifdef __CFORALL__ 14 // 17 15 18 16 #ifndef MATH_H … … 356 354 #endif // MATH_H 357 355 358 #else359 #include_next <math>360 #endif //__CFORALL__361 362 356 // Local Variables: // 363 357 // mode: c // -
TabularUnified src/libcfa/rational ¶
rff2d7341 rbb82c03 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo 3 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. 6 // 6 // 7 7 // rational -- Rational numbers are numbers written as a ratio, i.e., as a fraction, where the numerator (top number) 8 8 // and the denominator (bottom number) are whole numbers. When creating and computing with rational numbers, results 9 9 // are constantly reduced to keep the numerator and denominator as small as possible. 10 // 10 // 11 11 // Author : Peter A. Buhr 12 12 // Created On : Wed Apr 6 17:56:25 2016 … … 14 14 // Last Modified On : Wed May 4 14:11:45 2016 15 15 // Update Count : 16 16 // 17 #ifdef __CFORALL__ 18 16 // 19 17 #ifndef RATIONAL_H 20 18 #define RATIONAL_H … … 67 65 #endif // RATIONAL_H 68 66 69 #else70 #include_next <rational>71 #endif //__CFORALL__72 73 67 // Local Variables: // 74 68 // mode: c // -
TabularUnified src/libcfa/stdlib ¶
rff2d7341 rbb82c03 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // stdlib -- 7 // stdlib -- 8 8 // 9 9 // Author : Peter A. Buhr … … 13 13 // Update Count : 99 14 14 // 15 16 #ifdef __CFORALL__17 15 18 16 #ifndef STDLIB_H … … 134 132 #endif // STDLIB_H 135 133 136 #else137 #include_next <stdlib>138 #endif //__CFORALL__139 140 134 // Local Variables: // 141 135 // mode: c //
Note: See TracChangeset
for help on using the changeset viewer.