-
Notifications
You must be signed in to change notification settings - Fork 7
Allow inserting feature flag macros on info fields #27
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
Open
GDYendell
wants to merge
5
commits into
master
Choose a base branch
from
info-feature-flags
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
622eb81
Allow inserting feature flag macros on info fields
GDYendell 8a36487
Apply patch to fix EPICS base build in CI
GDYendell b394df5
Update to codecov-action@v3
GDYendell ebe9669
Remove python 2.7 and 3.6 support
GDYendell 50cf4cf
Help pipenv to regenerate Pipfile.lock
GDYendell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| diff --git a/src/cas/generic/caServerI.h b/src/cas/generic/caServerI.h | ||
| index b45d9373a..e31b210a7 100644 | ||
| --- a/src/cas/generic/caServerI.h | ||
| +++ b/src/cas/generic/caServerI.h | ||
| @@ -88,8 +88,8 @@ public: | ||
| private: | ||
| clientBufMemoryManager clientBufMemMgr; | ||
| tsFreeList < casMonitor, 1024 > casMonitorFreeList; | ||
| - tsDLList < casStrmClient > clientList; | ||
| - tsDLList < casIntfOS > intfList; | ||
| + ::tsDLList < casStrmClient > clientList; | ||
| + ::tsDLList < casIntfOS > intfList; | ||
| mutable epicsMutex mutex; | ||
| mutable epicsMutex diagnosticCountersMutex; | ||
| caServer & adapter; | ||
| diff --git a/src/cas/generic/casPVI.cc b/src/cas/generic/casPVI.cc | ||
| index 0b02a6cbf..8d2d27096 100644 | ||
| --- a/src/cas/generic/casPVI.cc | ||
| +++ b/src/cas/generic/casPVI.cc | ||
| @@ -286,7 +286,7 @@ void casPVI::postEvent ( const casEventMask & select, const gdd & event ) | ||
| } | ||
|
|
||
| caStatus casPVI::installMonitor ( | ||
| - casMonitor & mon, tsDLList < casMonitor > & monitorList ) | ||
| + casMonitor & mon, ::tsDLList < casMonitor > & monitorList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| assert ( this->nMonAttached < UINT_MAX ); | ||
| @@ -302,7 +302,7 @@ caStatus casPVI::installMonitor ( | ||
| } | ||
|
|
||
| casMonitor * casPVI::removeMonitor ( | ||
| - tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ) | ||
| + ::tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| casMonitor * pMon = 0; | ||
| @@ -359,8 +359,8 @@ void casPVI::installChannel ( chanIntfForPV & chan ) | ||
| } | ||
|
|
||
| void casPVI::removeChannel ( | ||
| - chanIntfForPV & chan, tsDLList < casMonitor > & src, | ||
| - tsDLList < casMonitor > & dest ) | ||
| + chanIntfForPV & chan, ::tsDLList < casMonitor > & src, | ||
| + ::tsDLList < casMonitor > & dest ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| src.removeAll ( dest ); | ||
| @@ -374,7 +374,7 @@ void casPVI::removeChannel ( | ||
| } | ||
| } | ||
|
|
||
| -void casPVI::clearOutstandingReads ( tsDLList < casAsyncIOI > & ioList ) | ||
| +void casPVI::clearOutstandingReads ( ::tsDLList < casAsyncIOI > & ioList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
|
|
||
| @@ -394,7 +394,7 @@ void casPVI::clearOutstandingReads ( tsDLList < casAsyncIOI > & ioList ) | ||
| } | ||
| } | ||
|
|
||
| -void casPVI::destroyAllIO ( tsDLList < casAsyncIOI > & ioList ) | ||
| +void casPVI::destroyAllIO ( ::tsDLList < casAsyncIOI > & ioList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| while ( casAsyncIOI * pIO = ioList.get() ) { | ||
| @@ -406,7 +406,7 @@ void casPVI::destroyAllIO ( tsDLList < casAsyncIOI > & ioList ) | ||
| } | ||
|
|
||
| void casPVI::installIO ( | ||
| - tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| + ::tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| ioList.add ( io ); | ||
| @@ -415,7 +415,7 @@ void casPVI::installIO ( | ||
| } | ||
|
|
||
| void casPVI::uninstallIO ( | ||
| - tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| + ::tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| { | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| diff --git a/src/cas/generic/casPVI.h b/src/cas/generic/casPVI.h | ||
| index feea79d23..7ecf588b8 100644 | ||
| --- a/src/cas/generic/casPVI.h | ||
| +++ b/src/cas/generic/casPVI.h | ||
| @@ -49,21 +49,21 @@ public: | ||
| caStatus attachToServer ( caServerI & cas ); | ||
| aitIndex nativeCount (); | ||
| bool ioIsPending () const; | ||
| - void clearOutstandingReads ( tsDLList < class casAsyncIOI > &); | ||
| + void clearOutstandingReads ( ::tsDLList < class casAsyncIOI > &); | ||
| void destroyAllIO ( | ||
| - tsDLList < casAsyncIOI > & ); | ||
| + ::tsDLList < casAsyncIOI > & ); | ||
| void installIO ( | ||
| - tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| + ::tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| void uninstallIO ( | ||
| - tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| + ::tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| void installChannel ( chanIntfForPV & chan ); | ||
| void removeChannel ( | ||
| - chanIntfForPV & chan, tsDLList < casMonitor > & src, | ||
| - tsDLList < casMonitor > & dest ); | ||
| + chanIntfForPV & chan, ::tsDLList < casMonitor > & src, | ||
| + ::tsDLList < casMonitor > & dest ); | ||
| caStatus installMonitor ( | ||
| - casMonitor & mon, tsDLList < casMonitor > & monitorList ); | ||
| + casMonitor & mon, ::tsDLList < casMonitor > & monitorList ); | ||
| casMonitor * removeMonitor ( | ||
| - tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ); | ||
| + ::tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ); | ||
| void deleteSignal (); | ||
| void postEvent ( const casEventMask & select, const gdd & event ); | ||
| caServer * getExtServer () const; | ||
| @@ -84,7 +84,7 @@ public: | ||
|
|
||
| private: | ||
| mutable epicsMutex mutex; | ||
| - tsDLList < chanIntfForPV > chanList; | ||
| + ::tsDLList < chanIntfForPV > chanList; | ||
| gddEnumStringTable enumStrTbl; | ||
| caServerI * pCAS; | ||
| casPV * pPV; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| diff --git a/src/ca/legacy/pcas/generic/caServerI.h b/src/ca/legacy/pcas/generic/caServerI.h | ||
| index 012233693..bfedf55ae 100644 | ||
| --- a/src/ca/legacy/pcas/generic/caServerI.h | ||
| +++ b/src/ca/legacy/pcas/generic/caServerI.h | ||
| @@ -88,8 +88,8 @@ public: | ||
| private: | ||
| clientBufMemoryManager clientBufMemMgr; | ||
| tsFreeList < casMonitor, 1024 > casMonitorFreeList; | ||
| - tsDLList < casStrmClient > clientList; | ||
| - tsDLList < casIntfOS > intfList; | ||
| + ::tsDLList < casStrmClient > clientList; | ||
| + ::tsDLList < casIntfOS > intfList; | ||
| mutable epicsMutex mutex; | ||
| mutable epicsMutex diagnosticCountersMutex; | ||
| caServer & adapter; | ||
| diff --git a/src/ca/legacy/pcas/generic/casPVI.cc b/src/ca/legacy/pcas/generic/casPVI.cc | ||
| index 245c51e01..5ae1f522e 100644 | ||
| --- a/src/ca/legacy/pcas/generic/casPVI.cc | ||
| +++ b/src/ca/legacy/pcas/generic/casPVI.cc | ||
| @@ -291,7 +291,7 @@ void casPVI::postEvent ( const casEventMask & select, const gdd & event ) | ||
| } | ||
|
|
||
| caStatus casPVI::installMonitor ( | ||
| - casMonitor & mon, tsDLList < casMonitor > & monitorList ) | ||
| + casMonitor & mon, ::tsDLList < casMonitor > & monitorList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| assert ( this->nMonAttached < UINT_MAX ); | ||
| @@ -307,7 +307,7 @@ caStatus casPVI::installMonitor ( | ||
| } | ||
|
|
||
| casMonitor * casPVI::removeMonitor ( | ||
| - tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ) | ||
| + ::tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| casMonitor * pMon = 0; | ||
| @@ -364,8 +364,8 @@ void casPVI::installChannel ( chanIntfForPV & chan ) | ||
| } | ||
|
|
||
| void casPVI::removeChannel ( | ||
| - chanIntfForPV & chan, tsDLList < casMonitor > & src, | ||
| - tsDLList < casMonitor > & dest ) | ||
| + chanIntfForPV & chan, ::tsDLList < casMonitor > & src, | ||
| + ::tsDLList < casMonitor > & dest ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| src.removeAll ( dest ); | ||
| @@ -379,7 +379,7 @@ void casPVI::removeChannel ( | ||
| } | ||
| } | ||
|
|
||
| -void casPVI::clearOutstandingReads ( tsDLList < casAsyncIOI > & ioList ) | ||
| +void casPVI::clearOutstandingReads ( ::tsDLList < casAsyncIOI > & ioList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
|
|
||
| @@ -399,7 +399,7 @@ void casPVI::clearOutstandingReads ( tsDLList < casAsyncIOI > & ioList ) | ||
| } | ||
| } | ||
|
|
||
| -void casPVI::destroyAllIO ( tsDLList < casAsyncIOI > & ioList ) | ||
| +void casPVI::destroyAllIO ( ::tsDLList < casAsyncIOI > & ioList ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| while ( casAsyncIOI * pIO = ioList.get() ) { | ||
| @@ -411,7 +411,7 @@ void casPVI::destroyAllIO ( tsDLList < casAsyncIOI > & ioList ) | ||
| } | ||
|
|
||
| void casPVI::installIO ( | ||
| - tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| + ::tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| ioList.add ( io ); | ||
| @@ -420,7 +420,7 @@ void casPVI::installIO ( | ||
| } | ||
|
|
||
| void casPVI::uninstallIO ( | ||
| - tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| + ::tsDLList < casAsyncIOI > & ioList, casAsyncIOI & io ) | ||
| { | ||
| { | ||
| epicsGuard < epicsMutex > guard ( this->mutex ); | ||
| diff --git a/src/ca/legacy/pcas/generic/casPVI.h b/src/ca/legacy/pcas/generic/casPVI.h | ||
| index feea79d23..7ecf588b8 100644 | ||
| --- a/src/ca/legacy/pcas/generic/casPVI.h | ||
| +++ b/src/ca/legacy/pcas/generic/casPVI.h | ||
| @@ -49,21 +49,21 @@ public: | ||
| caStatus attachToServer ( caServerI & cas ); | ||
| aitIndex nativeCount (); | ||
| bool ioIsPending () const; | ||
| - void clearOutstandingReads ( tsDLList < class casAsyncIOI > &); | ||
| + void clearOutstandingReads ( ::tsDLList < class casAsyncIOI > &); | ||
| void destroyAllIO ( | ||
| - tsDLList < casAsyncIOI > & ); | ||
| + ::tsDLList < casAsyncIOI > & ); | ||
| void installIO ( | ||
| - tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| + ::tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| void uninstallIO ( | ||
| - tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| + ::tsDLList < casAsyncIOI > &, casAsyncIOI & ); | ||
| void installChannel ( chanIntfForPV & chan ); | ||
| void removeChannel ( | ||
| - chanIntfForPV & chan, tsDLList < casMonitor > & src, | ||
| - tsDLList < casMonitor > & dest ); | ||
| + chanIntfForPV & chan, ::tsDLList < casMonitor > & src, | ||
| + ::tsDLList < casMonitor > & dest ); | ||
| caStatus installMonitor ( | ||
| - casMonitor & mon, tsDLList < casMonitor > & monitorList ); | ||
| + casMonitor & mon, ::tsDLList < casMonitor > & monitorList ); | ||
| casMonitor * removeMonitor ( | ||
| - tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ); | ||
| + ::tsDLList < casMonitor > & list, ca_uint32_t clientIdIn ); | ||
| void deleteSignal (); | ||
| void postEvent ( const casEventMask & select, const gdd & event ); | ||
| caServer * getExtServer () const; | ||
| @@ -84,7 +84,7 @@ public: | ||
|
|
||
| private: | ||
| mutable epicsMutex mutex; | ||
| - tsDLList < chanIntfForPV > chanList; | ||
| + ::tsDLList < chanIntfForPV > chanList; | ||
| gddEnumStringTable enumStrTbl; | ||
| caServerI * pCAS; | ||
| casPV * pPV; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.