Changeset 4541b09


Ignore:
Timestamp:
Apr 4, 2023, 12:05:46 PM (13 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, master
Children:
bb7422a
Parents:
9586d22
Message:

small corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex

    r9586d22 r4541b09  
    1919
    2020int main() {
    21         processor p[2];                                 $\C{// add 2 processors = 3 total with starting processor}$
     21        @processor@ p[2];                               $\C{// add 2 processors = 3 total with starting processor}$
    2222        {
    2323                my_thread t[2], * t3 = new();   $\C{// create 3 user threads, running in main routine}$
    2424                ... // execute concurrently
    2525                delete( t3 );                           $\C{// wait for thread to end and deallocate}$
    26         } // waits for threads to end and deallocate
     26        } // wait for threads to end and deallocate
    2727}
    2828\end{cfa}
Note: See TracChangeset for help on using the changeset viewer.