-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework project structure and change build system to CMake (alias OV3) #58
Conversation
now marking unaccessable undefined and defined memory regions
added valgrind leak check for database added valgrind pool management int tlsf added printing of database pointers changed defines for building with valgrind integration remove test executable
changed: redirect for database malleoc/realloc/free now with vendortree variable changed: OV_VALGRIND now enabled by default for debub builds in linux fixed: double frees for part objects when marking database pointer freed
string list for headers not freed own port in httpmanager reset on restart temporary any variables not freed in setvar
free all adressInfoElements on shutdown avoid execution startup for aresWorker on server restart
freeing OwnPort variable of xdrmanager on shutdown
parts of database are marked as noaccess but that is ok
add branch name to release name
fixed double use of iterator variable
* Remove "libov/" prefix * don't include ov_debug.h within ov_ov.h to avoid dependency of ovheaders on ov
This is a dirty hack and should be replaced by an additional header only library for the ks types in the future.
Instead, -c is a short form of --create now, which allows to create the database file, while specifying the database size (as it does with dbutil). This is a breaking change to ov_runtimeserver's command line options
... and fix a related bug in UDPbind
moving the database caused vector variables to be set to 0 length this only occured in debug builds and only when loading an existing database
This commit does not intend to result in any legal changes. It's sole purpose is to clarify the license conditions and improve compliance with filename and formulation conventions.
Improve cmake build See merge request acplt/rte-tools/rte!4
Resolved Conflicts: deleted addonlibs/functionblock/iec61131stdfb/source/CONCATVEC.c deleted tools/travis_createDoc_and_handlerepos.sh
Documentation of new build system usage and intended project structure can be found in the reworked README file. We are currently waiting for some internal tests with a large OV application project to verify the operability of the "new" OV build. |
You could add |
* add python file with base services and some additonal functionality * add example script on how to use this tool
tools/kshttp-pyhton/vdivde.py
Outdated
s = server_by_name(server_name, host=host) | ||
|
||
# fix vdivde3696 timer | ||
if object_exists(s, '/acplt/vdivde3696'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not hard code that path.
You can iterate over all libraries instantiations of
/acplt/ov/library
(this one is really fixed)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is only a script for quick-fixing some of the real-life issues resulting from the fix in #60, I consider it okay that this script takes the short cut, which may not be 100% correct but sufficient in most cases. It should be used with care anyhow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Than at least add a comment.
* replace format constants with enum value * change print_instance_counts to resolve library via ov/library.instance * bug fixes
* actually process the queue in get_all_subclasses * remove some debug otput
Change summary:
Superseds and thus closes #53