- Timestamp:
- Aug 30, 2023, 10:13:45 PM (16 months ago)
- Branches:
- master
- Children:
- 0b8c951d
- Parents:
- 38de914
- Location:
- libcfa/src
- Files:
-
- 10 edited
- 18 moved
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r38de914 r55b060d 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Aug 14 17:10:51202314 ## Update Count : 26 213 ## Last Modified On : Wed Aug 30 21:22:45 2023 14 ## Update Count : 263 15 15 ############################################################################### 16 16 … … 52 52 bits/algorithm.hfa \ 53 53 bits/align.hfa \ 54 bits/co ntainers.hfa \54 bits/collections.hfa \ 55 55 bits/debug.hfa \ 56 56 bits/defs.hfa \ … … 63 63 concurrency/iofwd.hfa \ 64 64 concurrency/barrier.hfa \ 65 co ntainers/array.hfa \66 co ntainers/list.hfa \67 co ntainers/lockfree.hfa \68 co ntainers/string_sharectx.hfa \69 co ntainers/vector2.hfa \65 collections/array.hfa \ 66 collections/list.hfa \ 67 collections/lockfree.hfa \ 68 collections/string_sharectx.hfa \ 69 collections/vector2.hfa \ 70 70 vec/vec.hfa \ 71 71 vec/vec2.hfa \ … … 89 89 bits/weakso_locks.hfa \ 90 90 algorithms/range_iterator.hfa \ 91 co ntainers/maybe.hfa \92 co ntainers/pair.hfa \93 co ntainers/result.hfa \94 co ntainers/string.hfa \95 co ntainers/string_res.hfa \96 co ntainers/vector.hfa \91 collections/maybe.hfa \ 92 collections/pair.hfa \ 93 collections/result.hfa \ 94 collections/string.hfa \ 95 collections/string_res.hfa \ 96 collections/vector.hfa \ 97 97 device/cpu.hfa 98 98 -
libcfa/src/bits/collections.hfa
r38de914 r55b060d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // bits/co ntainers.hfa -- Intrusive generic containers.hfa7 // bits/collections.hfa -- Intrusive generic collections 8 8 // 9 9 // Author : Thierry Delisle 10 10 // Created On : Tue Oct 31 16:38:50 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 2 11:33:08202313 // Update Count : 2912 // Last Modified On : Wed Aug 30 21:26:39 2023 13 // Update Count : 30 14 14 15 15 #pragma once -
libcfa/src/bits/weakso_locks.hfa
r38de914 r55b060d 20 20 #include "bits/locks.hfa" 21 21 #include "bits/sequence.hfa" 22 #include "bits/co ntainers.hfa"23 #include "co ntainers/list.hfa"22 #include "bits/collections.hfa" 23 #include "collections/list.hfa" 24 24 25 25 struct select_node; -
libcfa/src/collections/maybe.cfa
r38de914 r55b060d 10 10 // Created On : Wed May 24 15:40:00 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Feb 17 11:22:03 201913 // Update Count : 312 // Last Modified On : Wed Aug 30 21:26:55 2023 13 // Update Count : 4 14 14 // 15 15 16 #include <co ntainers/maybe.hfa>16 #include <collections/maybe.hfa> 17 17 #include <assert.h> 18 18 -
libcfa/src/collections/pair.cfa
r38de914 r55b060d 6 6 // Author : Aaron Moss 7 7 // Created On : Wed Apr 12 15:32:00 2017 8 // Last Modified By : Aaron Moss9 // Last Modified On : Wed A pr 12 15:32:00 201710 // Update Count : 18 // Last Modified By : Peter A. Buhr 9 // Last Modified On : Wed Aug 30 21:27:12 2023 10 // Update Count : 2 11 11 // 12 12 13 #include <co ntainers/pair.hfa>13 #include <collections/pair.hfa> 14 14 15 15 forall(R, S -
libcfa/src/collections/result.cfa
r38de914 r55b060d 10 10 // Created On : Wed May 24 15:40:00 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Feb 17 11:24:04 201913 // Update Count : 312 // Last Modified On : Wed Aug 30 21:27:22 2023 13 // Update Count : 4 14 14 // 15 15 16 #include <co ntainers/result.hfa>16 #include <collections/result.hfa> 17 17 #include <assert.h> 18 18 -
libcfa/src/collections/vector.cfa
r38de914 r55b060d 10 10 // Created On : Tue Jul 5 18:07:52 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 5 18:08:31 201613 // Update Count : 212 // Last Modified On : Wed Aug 30 21:27:31 2023 13 // Update Count : 3 14 14 // 15 15 16 #include <co ntainers/vector.hfa>16 #include <collections/vector.hfa> 17 17 18 18 #include <stdlib.hfa> -
libcfa/src/concurrency/alarm.hfa
r38de914 r55b060d 10 10 // Created On : Fri Jun 2 11:31:25 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Mar 26 16:25:41 201813 // Update Count : 1 112 // Last Modified On : Wed Aug 30 21:27:40 2023 13 // Update Count : 12 14 14 // 15 15 … … 23 23 #include "time.hfa" 24 24 25 #include "co ntainers/list.hfa"25 #include "collections/list.hfa" 26 26 27 27 struct thread$; -
libcfa/src/concurrency/invoke.h
r38de914 r55b060d 10 10 // Created On : Tue Jan 17 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 14 13:39:31 202313 // Update Count : 5912 // Last Modified On : Wed Aug 30 21:27:51 2023 13 // Update Count : 60 14 14 // 15 15 16 16 // No not use #pragma once was this file is included twice in some places. It has its own guard system. 17 17 18 #include "bits/co ntainers.hfa"18 #include "bits/collections.hfa" 19 19 #include "bits/defs.hfa" 20 20 #include "bits/locks.hfa" … … 23 23 24 24 #ifdef __cforall 25 #include "co ntainers/list.hfa"25 #include "collections/list.hfa" 26 26 extern "C" { 27 27 #endif -
libcfa/src/concurrency/kernel.hfa
r38de914 r55b060d 10 10 // Created On : Tue Jan 17 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Feb 4 12:29:26 202013 // Update Count : 2 212 // Last Modified On : Wed Aug 30 21:28:46 2023 13 // Update Count : 23 14 14 // 15 15 … … 20 20 #include "coroutine.hfa" 21 21 22 #include "co ntainers/list.hfa"22 #include "collections/list.hfa" 23 23 24 24 extern "C" { -
libcfa/src/concurrency/locks.hfa
r38de914 r55b060d 21 21 22 22 #include "bits/weakso_locks.hfa" 23 #include "co ntainers/lockfree.hfa"24 #include "co ntainers/list.hfa"23 #include "collections/lockfree.hfa" 24 #include "collections/list.hfa" 25 25 26 26 #include "limits.hfa" -
libcfa/src/concurrency/once.hfa
r38de914 r55b060d 16 16 #pragma once 17 17 18 #include "co ntainers/lockfree.hfa"18 #include "collections/lockfree.hfa" 19 19 #include "kernel/fwd.hfa" 20 20 -
libcfa/src/concurrency/select.hfa
r38de914 r55b060d 17 17 #pragma once 18 18 19 #include "co ntainers/list.hfa"19 #include "collections/list.hfa" 20 20 #include "alarm.hfa" 21 21 #include "kernel.hfa" -
libcfa/src/executor.baseline.txt
r38de914 r55b060d 5 5 6 6 #include <thread.hfa> 7 #include <co ntainers/list.hfa>7 #include <collections/list.hfa> 8 8 9 9 forall( T & | $dlistable(T, T) ) { -
libcfa/src/executor.cfa
r38de914 r55b060d 5 5 6 6 #include <thread.hfa> 7 #include <co ntainers/list.hfa>7 #include <collections/list.hfa> 8 8 9 9 forall( T &, TLink& = dlink(T) | embedded(T, TLink, dlink(T)) ) {
Note: See TracChangeset
for help on using the changeset viewer.