Changeset 8dcb832 for libcfa/src/iostream.hfa
- Timestamp:
- Oct 6, 2021, 8:37:21 PM (20 months ago)
- Branches:
- ADT, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 237df76
- Parents:
- e16eb460
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
re16eb460 r8dcb832 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Apr 28 20:37:56202113 // Update Count : 40 112 // Last Modified On : Wed Oct 6 18:54:59 2021 13 // Update Count : 404 14 14 // 15 15 … … 58 58 void close( ostype & ); 59 59 ostype & write( ostype &, const char [], size_t ); 60 void acquire( ostype & ); // concurrent access61 60 }; // ostream 62 61 … … 142 141 ostype & nlOn( ostype & ); 143 142 ostype & nlOff( ostype & ); 144 } // distribution145 146 forall( ostype & | ostream( ostype ) ) {147 ostype & acquire( ostype & );148 143 } // distribution 149 144 … … 312 307 void close( istype & is ); 313 308 istype & read( istype &, char [], size_t ); 314 void acquire( istype & ); // concurrent access315 309 }; // istream 316 310 … … 379 373 } // distribution 380 374 381 forall( istype & | istream( istype ) ) {382 istype & acquire( istype & );383 } // distribution384 385 375 // *********************************** manipulators *********************************** 386 376
Note: See TracChangeset
for help on using the changeset viewer.