Changeset a6151ba


Ignore:
Timestamp:
Jul 5, 2016, 6:35:10 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
205ee4e, ed0e67a
Parents:
f96b061
Message:

update comments in code and tests, and add test searchsort

Files:
3 added
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/vector

    rf96b061 ra6151ba  
     1//
     2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     3//
     4// The contents of this file are covered under the licence agreement in the
     5// file "LICENCE" distributed with Cforall.
     6//
     7// vector --
     8//
     9// Author           : Thierry Delisle
     10// Created On       : Tue Jul  5 18:00:07 2016
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Tue Jul  5 18:01:35 2016
     13// Update Count     : 2
     14//
     15
    116#pragma once
    217
     
    138153        return this->storage;
    139154}
     155
     156// Local Variables: //
     157// mode: c //
     158// tab-width: 4 //
     159// End: //
  • src/libcfa/containers/vector.c

    rf96b061 ra6151ba  
     1//
     2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     3//
     4// The contents of this file are covered under the licence agreement in the
     5// file "LICENCE" distributed with Cforall.
     6//
     7// vector.c --
     8//
     9// Author           : Thierry Delisle
     10// Created On       : Tue Jul  5 18:07:52 2016
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Tue Jul  5 18:08:31 2016
     13// Update Count     : 2
     14//
     15
    116#include <containers/vector>
    217
     
    7186        }
    7287}
     88
     89// Local Variables: //
     90// mode: c //
     91// tab-width: 4 //
     92// End: //
  • src/libcfa/prelude.cf

    rf96b061 ra6151ba  
    1 # 2 "prelude.cf"  // needed for error messages from this file
    21//                               -*- Mode: C -*-
    32//
     
    98// Created On       : Sat Nov 29 07:23:41 2014
    109// Last Modified By : Peter A. Buhr
    11 // Last Modified On : Wed Mar  2 18:03:41 2016
    12 // Update Count     : 89
    13 //
    14 
    15 // Following line added from stddef.h by build
    16 
    17 typedef long int ptrdiff_t;
     10// Last Modified On : Tue Jul  5 18:04:40 2016
     11// Update Count     : 92
     12//
     13
     14# 2 "prelude.cf"  // needed for error messages from this file
    1815
    1916// Section numbers from: http://plg.uwaterloo.ca/~cforall/refrat.pdf
     
    854851void    ^?{}( const volatile void *         *);
    855852void    ^?{}( const volatile void * volatile *);
     853
     854// Local Variables: //
     855// mode: c //
     856// tab-width: 8 //
     857// End: //
  • src/libcfa/rational.c

    rf96b061 ra6151ba  
    1 //                               -*- Mode: C -*-
    21//
    32// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     
    1110// Created On       : Wed Apr  6 17:54:28 2016
    1211// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Wed May  4 14:16:14 2016
    14 // Update Count     : 25
     12// Last Modified On : Tue Jul  5 18:29:12 2016
     13// Update Count     : 26
    1514//
    1615
  • src/tests/io.c

    rf96b061 ra6151ba  
    1 //                               -*- Mode: C -*-
    21//
    32// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     
    1110// Created On       : Wed Mar  2 16:56:02 2016
    1211// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Wed Jun  8 22:52:04 2016
    14 // Update Count     : 30
     12// Last Modified On : Tue Jul  5 18:29:23 2016
     13// Update Count     : 31
    1514//
    1615
  • src/tests/rational.c

    rf96b061 ra6151ba  
    1 //                               -*- Mode: C -*-
    21//
    32// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     
    1110// Created On       : Mon Mar 28 08:43:12 2016
    1211// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Wed May  4 14:19:36 2016
    14 // Update Count     : 24
     12// Last Modified On : Tue Jul  5 18:29:37 2016
     13// Update Count     : 25
    1514//
    1615
  • src/tests/searchsort.c

    rf96b061 ra6151ba  
    1 //                               -*- Mode: C -*-
    21//
    32// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
     
    1110// Created On       : Thu Feb  4 18:17:50 2016
    1211// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Tue Mar 22 22:16:46 2016
    14 // Update Count     : 55
     12// Last Modified On : Tue Jul  5 18:06:07 2016
     13// Update Count     : 56
    1514//
    1615
Note: See TracChangeset for help on using the changeset viewer.