- May 15, 2024
-
-
Martin Christoph Hierholzer authored
-
- Mar 15, 2024
-
-
Jens Georg authored
* fix: Ignore data validity through return channels * chore: Minor linter fixes
-
- Jan 16, 2024
-
-
Martin Christoph Hierholzer authored
-
- Jan 15, 2024
-
-
Martin Christoph Hierholzer authored
ProcessVariableProxy::removeNode() was effectively taking a reference to a shared pointer as an argument and is removing the same (effective) shared pointer from a list. This poses a problem if the reference passed points to the list directly and is the last shared pointer to this object so it gets freed, because removeNode() is accessing the object after removing it from the list.
-
- Nov 23, 2023
-
-
Jens Georg authored
-
- Oct 10, 2023
-
-
* The example app has been updated to show the implementation of the new VersionInfoProvider module
-
- Oct 04, 2023
-
-
Martin Christoph Hierholzer authored
-
- Sep 26, 2023
-
-
Martin Christoph Hierholzer authored
-
- Sep 25, 2023
-
-
Martin Christoph Hierholzer authored
- fix EntityOwner::constant() violates character restrictions - Utilities::stripName() was broken in multiple ways. It has been changed into a true, reversible escaping algorithm and subsequently renamed into Utilities::escapeName(). - Utilities::unescapeName() is introduced. BREAKING CHANGE: This commit will break applications which either - rely on the names of device status PVs for devices which contain illegal characters (e.g. when using a CDD directly instead of a dmap file alias), or - use Utilities::stripName() directly.
-
Martin Christoph Hierholzer authored
-
- Sep 21, 2023
-
-
Jens Georg authored
* Disable deprecation warnings * Fix linter findings * fix: Compiler warnings regarding internal linkage * fix: Mask memory leak --------- Co-authored-by:
Martin Hierholzer <martin.hierholzer@desy.de>
-
- Sep 19, 2023
-
-
Christian Willner authored
-
- Aug 18, 2023
-
-
Martin Christoph Hierholzer authored
-
- Aug 08, 2023
-
-
Martin Christoph Hierholzer authored
-
- Jul 07, 2023
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
InvalidityTracer and ConnectionMaker debug mode print now information about circular networks
-
- Jun 14, 2023
-
-
- Jun 13, 2023
-
-
Martin Christoph Hierholzer authored
-
- May 16, 2023
-
-
Martin Christoph Hierholzer authored
-
- May 12, 2023
-
-
Martin Christoph Hierholzer authored
-
- Apr 27, 2023
-
-
Martin Christoph Hierholzer authored
Constants (as generated by ApplicationModule::constant()) were causing a logic_error if accessors of different types were using the same constant (created with the same value and the same value type upon creation). This is possible since the type passed to constant() does not have to be the same as the type of the accessor. This is now fixed by giving each constant a fully unique name, so every accessor using a constant will be in its own little variable network.
-
- Jan 26, 2023
-
-
Martin Christoph Hierholzer authored
-
- Jan 19, 2023
-
-
Martin Christoph Hierholzer authored
-
- Nov 28, 2022
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
A PV which is received by a module and also used as a trigger for a DeviceModule was "deleted" from the model, if the module is unregistered from its owner. This deletion is now prevented by adding a trigger relationship to the model (which was anyway missing). Note: the "deletion" never was a real deletion, instead only all relationships are removed. As a consequence, the DeviceModule was still pointing to the "deleted" vertex resulting in a wrong connection later.
- Nov 16, 2022
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
- Nov 11, 2022
-
-
Martin Christoph Hierholzer authored
* Use correct of version pthread_setname_np depending on platform. On Linux, this function takes two parameters. On most other platforms (including all BSD-based platforms) it only takes a single parameter. * Omit -Wl,--export-dynamic flag on macOS. This flag is not supported on Clang / LLVM and on macOS it is not needed anway because exporting all symbols is the default behavior. When using Clang on other platforms (e.g. Linux) --export_dynamic or -rdynamic might have to be specified instead. * clang compiler compatibility Co-authored-by:
Sebastian Marsching <sebastian.marsching-git-2016@aquenos.com>
-
- Nov 10, 2022
-
-
Martin Christoph Hierholzer authored
-
- Nov 09, 2022
-
-
Martin Christoph Hierholzer authored
-
- Nov 08, 2022
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
-
-