Changeset c2b9f21
- Timestamp:
- Nov 30, 2017, 2:12:51 PM (7 years ago)
- 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:
- 3d560060
- Parents:
- 35bae526
- Location:
- src/libcfa
- Files:
-
- 2 deleted
- 16 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/Makefile.am
r35bae526 rc2b9f21 100 100 math \ 101 101 gmp \ 102 bits/align.h \ 102 103 bits/containers.h \ 103 104 bits/defs.h \ 104 105 bits/debug.h \ 105 106 bits/locks.h \ 106 concurrency/invoke.h \ 107 libhdr.h \ 108 libhdr/libalign.h \ 109 libhdr/libtools.h 107 concurrency/invoke.h 110 108 111 109 CLEANFILES = libcfa-prelude.c -
src/libcfa/Makefile.in
r35bae526 rc2b9f21 263 263 containers/result containers/vector concurrency/coroutine \ 264 264 concurrency/thread concurrency/kernel concurrency/monitor \ 265 ${shell echo stdhdr/*} math gmp bits/containers.h bits/defs.h \ 266 bits/debug.h bits/locks.h concurrency/invoke.h libhdr.h \ 267 libhdr/libalign.h libhdr/libtools.h 265 ${shell echo stdhdr/*} math gmp bits/align.h bits/containers.h \ 266 bits/defs.h bits/debug.h bits/locks.h concurrency/invoke.h 268 267 HEADERS = $(nobase_cfa_include_HEADERS) 269 268 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) … … 436 435 math \ 437 436 gmp \ 437 bits/align.h \ 438 438 bits/containers.h \ 439 439 bits/defs.h \ 440 440 bits/debug.h \ 441 441 bits/locks.h \ 442 concurrency/invoke.h \ 443 libhdr.h \ 444 libhdr/libalign.h \ 445 libhdr/libtools.h 442 concurrency/invoke.h 446 443 447 444 CLEANFILES = libcfa-prelude.c -
src/libcfa/bits/align.h
r35bae526 rc2b9f21 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // libdebug.h --7 // align.h -- 8 8 // 9 9 // Author : Thierry Delisle -
src/libcfa/bits/containers.h
r35bae526 rc2b9f21 15 15 #pragma once 16 16 17 #include "bits/align.h" 17 18 #include "bits/defs.h" 18 #include "libhdr.h"19 19 20 20 //----------------------------------------------------------------------------- -
src/libcfa/bits/debug.c
r35bae526 rc2b9f21 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // libdebug.c --7 // debug.c -- 8 8 // 9 9 // Author : Thierry Delisle -
src/libcfa/bits/debug.h
r35bae526 rc2b9f21 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // libdebug.h --7 // debug.h -- 8 8 // 9 9 // Author : Thierry Delisle -
src/libcfa/bits/defs.h
r35bae526 rc2b9f21 32 32 #define __cfa_anonymous_object __cfa_anonymous_object 33 33 #endif 34 35 #ifdef __cforall 36 extern "C" { 37 #endif 38 void abortf( const char fmt[], ... ) __attribute__ ((__nothrow__, __leaf__, __noreturn__)); 39 #ifdef __cforall 40 } 41 #endif -
src/libcfa/bits/locks.h
r35bae526 rc2b9f21 18 18 #include "bits/debug.h" 19 19 #include "bits/defs.h" 20 21 #include "libhdr.h"22 20 23 21 // pause to prevent excess processor bus usage -
src/libcfa/concurrency/alarm.c
r35bae526 rc2b9f21 22 22 #include <sys/time.h> 23 23 } 24 25 #include "libhdr.h"26 24 27 25 #include "alarm.h" -
src/libcfa/concurrency/coroutine.c
r35bae526 rc2b9f21 29 29 #define __CFA_INVOKE_PRIVATE__ 30 30 #include "invoke.h" 31 32 31 33 32 //----------------------------------------------------------------------------- -
src/libcfa/concurrency/invoke.c
r35bae526 rc2b9f21 18 18 #include <stdio.h> 19 19 20 #include "libhdr.h"21 20 #include "invoke.h" 22 21 -
src/libcfa/concurrency/kernel.c
r35bae526 rc2b9f21 13 13 // Update Count : 2 14 14 // 15 16 #include "libhdr.h"17 15 18 16 //C Includes -
src/libcfa/concurrency/kernel_private.h
r35bae526 rc2b9f21 15 15 16 16 #pragma once 17 18 #include "libhdr.h"19 17 20 18 #include "kernel" -
src/libcfa/concurrency/monitor.c
r35bae526 rc2b9f21 19 19 #include <inttypes.h> 20 20 21 #include "libhdr.h"22 21 #include "kernel_private.h" 23 22 -
src/libcfa/concurrency/preemption.c
r35bae526 rc2b9f21 14 14 // 15 15 16 #include "libhdr.h"17 16 #include "preemption.h" 18 17 -
src/libcfa/concurrency/thread.c
r35bae526 rc2b9f21 17 17 18 18 #include "kernel_private.h" 19 #include "libhdr.h"20 19 21 20 #define __CFA_INVOKE_PRIVATE__ -
src/libcfa/interpose.c
r35bae526 rc2b9f21 25 25 26 26 #include "bits/debug.h" 27 #include " libhdr/libtools.h"27 #include "bits/defs.h" 28 28 #include "startup.h" 29 29
Note: See TracChangeset
for help on using the changeset viewer.