Ignore:
Timestamp:
Jan 24, 2018, 10:54:51 AM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
c916e12
Parents:
15d248e
Message:

Update quickSort.c to rebind reference

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/concurrent/examples/quickSort.c

    r15d248e r764b4b2  
    1 // 
     1//
    22// The contents of this file are covered under the licence agreement in the
    33// file "LICENCE" distributed with Cforall.
    4 // 
     4//
    55// quickSort.c -- In-place concurrent quick-sort: threads are created to partition to a specific depth, then sequential
    66//              recursive-calls are use to sort each partition.
    7 // 
     7//
    88// Author           : Peter A. Buhr
    99// Created On       : Wed Dec  6 12:15:52 2017
     
    1111// Last Modified On : Thu Dec 14 11:20:40 2017
    1212// Update Count     : 142
    13 // 
     13//
    1414
    1515#include <fstream>
     
    123123                        } // choose
    124124                } else if ( strcmp( argv[1], "-t" ) == 0 ) {
    125                         unsortedfile = *(ifstream *)0;                          // no input
     125                        &unsortedfile = (ifstream *)0;                          // no input
    126126                        choose ( argc ) {
    127127                          case 4:
Note: See TracChangeset for help on using the changeset viewer.