Changeset ed0e67a
- Timestamp:
- Jul 6, 2016, 1:06:50 PM (8 years ago)
- 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:
- fcf041c
- Parents:
- a6151ba
- Location:
- src
- Files:
-
- 29 added
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/driver/cfa.cc
ra6151ba red0e67a 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jul 4 11:33:15201613 // Update Count : 1 3912 // Last Modified On : Tue Jul 5 20:56:18 2016 13 // Update Count : 140 14 14 // 15 15 … … 246 246 args[nargs] = "-I" CFA_INCDIR; 247 247 nargs += 1; 248 args[nargs] = "-I" CFA_INCDIR "/containers"; 249 nargs += 1; 250 248 args[nargs] = "-I" CFA_INCDIR "/stdhdr"; 249 nargs += 1; 251 250 args[nargs] = "-I" CFA_INCDIR "/containers"; 252 251 nargs += 1; -
src/libcfa/Makefile.am
ra6151ba red0e67a 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Tue Jul 5 17:10:26201614 ## Update Count : 18 213 ## Last Modified On : Tue Jul 5 20:52:31 2016 14 ## Update Count : 185 15 15 ############################################################################### 16 16 … … 67 67 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 68 68 69 nobase_include_HEADERS = ${headers} stdio.h 69 stdhdr = ${shell echo stdhdr/*} 70 71 nobase_include_HEADERS = ${headers} ${stdhdr} 70 72 71 73 CLEANFILES = libcfa-prelude.c -
src/libcfa/Makefile.in
ra6151ba red0e67a 236 236 libobjs = ${headers:=.o} 237 237 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 238 nobase_include_HEADERS = ${headers} stdio.h 238 stdhdr = ${shell echo stdhdr/*} 239 nobase_include_HEADERS = ${headers} ${stdhdr} 239 240 CLEANFILES = libcfa-prelude.c 240 241 all: all-am -
src/tests/random.c
ra6151ba red0e67a 1 extern "C" { 2 #include <unistd.h> // getpid 3 } // extern "C" 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 // random.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Tue Jul 5 21:29:30 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 5 21:29:54 2016 13 // Update Count : 1 14 // 4 15 5 16 #include <fstream> 6 17 #include <stdlib> // random 18 #include <unistd.h> // getpid 7 19 8 20 int main() { -
src/tests/vector/vector_int.c
ra6151ba red0e67a 9 9 // Author : Richard C. Bilson 10 10 // Created On : Wed May 27 17:56:53 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Apr 27 17:27:12201613 // Update Count : 311 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 5 21:00:56 2016 13 // Update Count : 4 14 14 // 15 15 16 16 #include "vector_int.h" 17 extern "C" {18 17 #include <stdlib.h> 19 18 #include <assert.h> 20 }21 19 22 20 #define DEFAULT_CAPACITY 20
Note: See TracChangeset
for help on using the changeset viewer.