Skip to content
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

pvtools rework #129

Merged
merged 5 commits into from
Oct 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions documentation/release_notes.dox
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Release 6.1.0 (UNRELEASED)
- pv/namedLockPattern.h
- createFileLogger() from pv/logger.h
- Removals
- The @b eget CLI utility has moved to https://github.com/epics-base/eget
The new @b pvcall and existing pvget replace its role as a low level troubleshooting tool.
- Remove deprecated methods configure(), flush(), and poll() from ChannelProvider.
- Remove RPCClient::sendRequest()
- Remove RPCService::destroy() and dispose()
Expand All @@ -26,6 +28,8 @@ Release 6.1.0 (UNRELEASED)
to receive notification of initial window size.
- Most locking issues in the 'ca' provider should now be resolved.
- Additions
- Add pvmonitor execuable as an alias for 'pvget -m'.
- Add new pvcall executable to make RPC calls with arguments encoded using the NTURI convention.
- pvput to NTEnum via. string now supported
- pvac::* add valid() method and boolean cast shorthand. Also reset() and operator<<(ostream, ...)
- Add pvac::GetEvent::valid to determine fields actually transfered during a Get operation.
Expand Down
14 changes: 11 additions & 3 deletions pvtoolsSrc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,27 @@ USR_CPPFLAGS += -I$(TOP)/src/remote

PROD_HOST += pvget
pvget_SRCS += pvget.cpp
pvget_SRCS += pvutils.cpp

PROD_HOST += pvmonitor
pvmonitor_SRCS += pvmonitor.cpp
pvmonitor_SRCS += pvutils.cpp

PROD_HOST += pvput
pvput_SRCS += pvput.cpp
pvput_SRCS += pvutils.cpp

PROD_HOST += pvcall
pvcall_SRCS += pvcall.cpp
pvcall_SRCS += pvutils.cpp

PROD_HOST += pvinfo
pvinfo_SRCS += pvinfo.cpp
pvinfo_SRCS += pvutils.cpp

PROD_HOST += pvlist
pvlist_SRCS += pvlist.cpp

PROD_HOST += eget
eget_SRCS += eget.cpp

PROD_LIBS += pvAccessCA pvAccess pvData ca Com

PROD_SYS_LIBS_WIN32 += ws2_32
Expand Down
Loading