Changeset 7e7a076
- Timestamp:
- Sep 24, 2021, 6:12:15 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- f93c50a
- Parents:
- 4d8fbf4
- Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/fstream.cfa ¶
r4d8fbf4 r7e7a076 187 187 } // release 188 188 189 inline void lock( ofstream & os ) { acquire( os ); } 190 inline void unlock( ofstream & os ) { release( os ); } 191 189 192 void ?{}( osacquire & acq, ofstream & os ) { &acq.os = &os; lock( os.lock$ ); } 190 193 void ^?{}( osacquire & acq ) { release( acq.os ); } -
TabularUnified libcfa/src/fstream.hfa ¶
r4d8fbf4 r7e7a076 80 80 void release( ofstream & ); 81 81 82 void lock( ofstream & ); 83 void unlock( ofstream & ); 84 82 85 struct osacquire { 83 86 ofstream & os;
Note: See TracChangeset
for help on using the changeset viewer.