├── .appveyor.yml ├── .ci-local ├── cdt-check.sh ├── codespell.dic ├── defaults.set ├── disable-fortify.py ├── libevent.py ├── nofortify.set └── ubsan.supp ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ci-scripts-build.yml │ ├── codespell.yml │ ├── gh-pages.yml │ ├── python.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── COPYRIGHT ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── abi-diff.sh ├── bundle ├── .gitignore ├── Makefile └── cmake │ ├── Platform │ ├── RTEMS-Initialize.cmake │ └── RTEMS.cmake │ ├── RTEMS.cmake@ │ └── x86_64-w64-mingw32.cmake ├── configure ├── CONFIG ├── CONFIG_PVXS_VERSION ├── CONFIG_SITE ├── Makefile ├── RELEASE ├── RULES ├── RULES.ioc ├── RULES_DIRS ├── RULES_TOP └── toolchain.c ├── coverage.sh ├── documentation ├── .gitignore ├── Doxyfile ├── Makefile ├── building.rst ├── cli.rst ├── client.rst ├── commit-gh.sh ├── conf.py ├── details.rst ├── example.rst ├── favicon.png ├── index.rst ├── ioc.rst ├── netconfig.rst ├── nt.rst ├── nt_table1.svg ├── nt_table2.svg ├── nt_table3.svg ├── nt_table4.svg ├── ntscalar.rst ├── overview.rst ├── pvalink-schema-0.json ├── pvalink.rst ├── qgroup.rst ├── qsrv2-schema-0.json ├── releasenotes.rst ├── server.rst ├── sharedpv.rst ├── source.rst ├── typedef.rst ├── util.rst └── value.rst ├── example ├── Makefile ├── client.cpp ├── mailbox.cpp ├── rpc_client.cpp ├── rpc_server.cpp ├── simpleget.cpp ├── simplesrv.cpp └── ticker.cpp ├── ioc ├── Makefile ├── channel.cpp ├── channel.h ├── credentials.cpp ├── credentials.h ├── dbentry.h ├── dberrormessage.cpp ├── dberrormessage.h ├── dbeventcontextdeleter.h ├── dblocker.h ├── dbmanylocker.h ├── demo.cpp ├── dummygroup.cpp ├── dummysingle.cpp ├── field.cpp ├── field.h ├── fieldconfig.h ├── fielddefinition.cpp ├── fielddefinition.h ├── fieldname.cpp ├── fieldname.h ├── fieldnamecomponent.h ├── fieldsubscriptionctx.cpp ├── fieldsubscriptionctx.h ├── group.cpp ├── group.h ├── groupconfig.h ├── groupconfigprocessor.cpp ├── groupconfigprocessor.h ├── groupdefinition.h ├── groupprocessorcontext.cpp ├── groupprocessorcontext.h ├── groupsource.cpp ├── groupsource.h ├── groupsourcehooks.cpp ├── groupsrcsubscriptionctx.h ├── imagedemo.c ├── iochooks.cpp ├── iocshargument.h ├── iocshcommand.h ├── iocshindex.h ├── iocsource.cpp ├── iocsource.h ├── localfieldlog.cpp ├── localfieldlog.h ├── pvalink.cpp ├── pvalink.h ├── pvalink_channel.cpp ├── pvalink_jlif.cpp ├── pvalink_link.cpp ├── pvalink_lset.cpp ├── pvxs │ └── iochooks.h ├── pvxs3x.dbd ├── pvxs7x.dbd ├── qsrvpvt.h ├── securityclient.cpp ├── securityclient.h ├── securitylogger.h ├── singlesource.cpp ├── singlesource.h ├── singlesourcehooks.cpp ├── singlesrcsubscriptionctx.cpp ├── singlesrcsubscriptionctx.h ├── subscriptionctx.h ├── typeutils.cpp ├── typeutils.h └── yajlcallbackhandler.h ├── pyproject.toml ├── python ├── .gitignore └── pvxslibs │ ├── __init__.py │ ├── ioc.py │ ├── lib │ └── __init__.py │ ├── path.py │ ├── test │ ├── __init__.py │ └── test_load.py │ └── version.py ├── qsrv ├── Makefile ├── makeInstallDir.pl ├── softIocPVXExit.db └── softMain.cpp ├── release.md ├── setup.py ├── setup ├── CONFIG_PVXS_MODULE ├── Makefile ├── RULES_PVXS_MODULE └── TOOLCHAIN_PVXS.target@ ├── src ├── Makefile ├── bitmask.cpp ├── bitmask.h ├── client.cpp ├── clientconn.cpp ├── clientdiscover.cpp ├── clientget.cpp ├── clientimpl.h ├── clientintrospect.cpp ├── clientmon.cpp ├── clientreq.cpp ├── config.cpp ├── conn.cpp ├── conn.h ├── data.cpp ├── dataencode.cpp ├── datafmt.cpp ├── dataimpl.h ├── describe.cpp ├── describe.h@ ├── evhelper.cpp ├── evhelper.h ├── log.cpp ├── nt.cpp ├── os │ ├── WIN32 │ │ └── osdSockExt.cpp │ └── default │ │ └── osdSockExt.cpp ├── osgroups.cpp ├── osiSockExt.h ├── pvaproto.h ├── pvrequest.cpp ├── pvrequest.h ├── pvxs │ ├── client.h │ ├── data.h │ ├── log.h │ ├── netcommon.h │ ├── nt.h │ ├── server.h │ ├── sharedArray.h │ ├── sharedpv.h │ ├── source.h │ ├── srvcommon.h │ ├── unittest.h │ ├── util.h │ ├── version.h │ └── versionNum.h@ ├── server.cpp ├── serverchan.cpp ├── serverconn.cpp ├── serverconn.h ├── serverget.cpp ├── serverintrospect.cpp ├── servermon.cpp ├── serversource.cpp ├── sharedarray.cpp ├── sharedpv.cpp ├── type.cpp ├── udp_collector.cpp ├── udp_collector.h ├── unittest.cpp ├── util.cpp └── utilpvt.h ├── test ├── Makefile ├── benchdata.cpp ├── const.db ├── eatspam.cpp ├── image.db ├── image.json ├── iq.db ├── mcat.cpp ├── ntenum.db ├── qgroup.cmd ├── qgroup.json ├── spam.cpp ├── table.db ├── test1000.cpp ├── testbitmask.cpp ├── testconfig.cpp ├── testdata.cpp ├── testdiscover.cpp ├── testendian.cpp ├── testev.cpp ├── testget.cpp ├── testinfo.cpp ├── testioc.acf ├── testioc.h ├── testlog.cpp ├── testmon.cpp ├── testmonpipe.cpp ├── testnamesrv.cpp ├── testnt.cpp ├── testput.cpp ├── testpvalink.cpp ├── testpvalink.db ├── testpvreq.cpp ├── testqgroup.cpp ├── testqsingle.cpp ├── testqsingle.db ├── testqsingle64.db ├── testqsinglelsi.db ├── testrpc.cpp ├── testshared.cpp ├── testsock.cpp ├── testtype.cpp ├── testudp.cpp ├── testudpfwd.cpp ├── testutil.cpp ├── testwild.cpp └── testxcode.cpp └── tools ├── Makefile ├── call.cpp ├── get.cpp ├── info.cpp ├── list.cpp ├── monitor.cpp ├── mshim.cpp ├── put.cpp └── pvxvct.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.ci-local/cdt-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/cdt-check.sh -------------------------------------------------------------------------------- /.ci-local/codespell.dic: -------------------------------------------------------------------------------- 1 | als 2 | SLAC 3 | slac 4 | copyIn 5 | -------------------------------------------------------------------------------- /.ci-local/defaults.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/defaults.set -------------------------------------------------------------------------------- /.ci-local/disable-fortify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/disable-fortify.py -------------------------------------------------------------------------------- /.ci-local/libevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/libevent.py -------------------------------------------------------------------------------- /.ci-local/nofortify.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/nofortify.set -------------------------------------------------------------------------------- /.ci-local/ubsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.ci-local/ubsan.supp -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci-scripts-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/workflows/ci-scripts-build.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/README.md -------------------------------------------------------------------------------- /abi-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/abi-diff.sh -------------------------------------------------------------------------------- /bundle/.gitignore: -------------------------------------------------------------------------------- 1 | /usr/ 2 | -------------------------------------------------------------------------------- /bundle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/bundle/Makefile -------------------------------------------------------------------------------- /bundle/cmake/Platform/RTEMS-Initialize.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/bundle/cmake/Platform/RTEMS-Initialize.cmake -------------------------------------------------------------------------------- /bundle/cmake/Platform/RTEMS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/bundle/cmake/Platform/RTEMS.cmake -------------------------------------------------------------------------------- /bundle/cmake/RTEMS.cmake@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/bundle/cmake/RTEMS.cmake@ -------------------------------------------------------------------------------- /bundle/cmake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/bundle/cmake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /configure/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/CONFIG -------------------------------------------------------------------------------- /configure/CONFIG_PVXS_VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/CONFIG_PVXS_VERSION -------------------------------------------------------------------------------- /configure/CONFIG_SITE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/CONFIG_SITE -------------------------------------------------------------------------------- /configure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/Makefile -------------------------------------------------------------------------------- /configure/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/RELEASE -------------------------------------------------------------------------------- /configure/RULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/RULES -------------------------------------------------------------------------------- /configure/RULES.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/RULES.ioc -------------------------------------------------------------------------------- /configure/RULES_DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/RULES_DIRS -------------------------------------------------------------------------------- /configure/RULES_TOP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/RULES_TOP -------------------------------------------------------------------------------- /configure/toolchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/configure/toolchain.c -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/coverage.sh -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/Doxyfile -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/building.rst -------------------------------------------------------------------------------- /documentation/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/cli.rst -------------------------------------------------------------------------------- /documentation/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/client.rst -------------------------------------------------------------------------------- /documentation/commit-gh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/commit-gh.sh -------------------------------------------------------------------------------- /documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/conf.py -------------------------------------------------------------------------------- /documentation/details.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/details.rst -------------------------------------------------------------------------------- /documentation/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/example.rst -------------------------------------------------------------------------------- /documentation/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/favicon.png -------------------------------------------------------------------------------- /documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/index.rst -------------------------------------------------------------------------------- /documentation/ioc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/ioc.rst -------------------------------------------------------------------------------- /documentation/netconfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/netconfig.rst -------------------------------------------------------------------------------- /documentation/nt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/nt.rst -------------------------------------------------------------------------------- /documentation/nt_table1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/nt_table1.svg -------------------------------------------------------------------------------- /documentation/nt_table2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/nt_table2.svg -------------------------------------------------------------------------------- /documentation/nt_table3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/nt_table3.svg -------------------------------------------------------------------------------- /documentation/nt_table4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/nt_table4.svg -------------------------------------------------------------------------------- /documentation/ntscalar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/ntscalar.rst -------------------------------------------------------------------------------- /documentation/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/overview.rst -------------------------------------------------------------------------------- /documentation/pvalink-schema-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/pvalink-schema-0.json -------------------------------------------------------------------------------- /documentation/pvalink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/pvalink.rst -------------------------------------------------------------------------------- /documentation/qgroup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/qgroup.rst -------------------------------------------------------------------------------- /documentation/qsrv2-schema-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/qsrv2-schema-0.json -------------------------------------------------------------------------------- /documentation/releasenotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/releasenotes.rst -------------------------------------------------------------------------------- /documentation/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/server.rst -------------------------------------------------------------------------------- /documentation/sharedpv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/sharedpv.rst -------------------------------------------------------------------------------- /documentation/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/source.rst -------------------------------------------------------------------------------- /documentation/typedef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/typedef.rst -------------------------------------------------------------------------------- /documentation/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/util.rst -------------------------------------------------------------------------------- /documentation/value.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/documentation/value.rst -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/client.cpp -------------------------------------------------------------------------------- /example/mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/mailbox.cpp -------------------------------------------------------------------------------- /example/rpc_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/rpc_client.cpp -------------------------------------------------------------------------------- /example/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/rpc_server.cpp -------------------------------------------------------------------------------- /example/simpleget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/simpleget.cpp -------------------------------------------------------------------------------- /example/simplesrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/simplesrv.cpp -------------------------------------------------------------------------------- /example/ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/example/ticker.cpp -------------------------------------------------------------------------------- /ioc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/Makefile -------------------------------------------------------------------------------- /ioc/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/channel.cpp -------------------------------------------------------------------------------- /ioc/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/channel.h -------------------------------------------------------------------------------- /ioc/credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/credentials.cpp -------------------------------------------------------------------------------- /ioc/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/credentials.h -------------------------------------------------------------------------------- /ioc/dbentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dbentry.h -------------------------------------------------------------------------------- /ioc/dberrormessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dberrormessage.cpp -------------------------------------------------------------------------------- /ioc/dberrormessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dberrormessage.h -------------------------------------------------------------------------------- /ioc/dbeventcontextdeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dbeventcontextdeleter.h -------------------------------------------------------------------------------- /ioc/dblocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dblocker.h -------------------------------------------------------------------------------- /ioc/dbmanylocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dbmanylocker.h -------------------------------------------------------------------------------- /ioc/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/demo.cpp -------------------------------------------------------------------------------- /ioc/dummygroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dummygroup.cpp -------------------------------------------------------------------------------- /ioc/dummysingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/dummysingle.cpp -------------------------------------------------------------------------------- /ioc/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/field.cpp -------------------------------------------------------------------------------- /ioc/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/field.h -------------------------------------------------------------------------------- /ioc/fieldconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldconfig.h -------------------------------------------------------------------------------- /ioc/fielddefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fielddefinition.cpp -------------------------------------------------------------------------------- /ioc/fielddefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fielddefinition.h -------------------------------------------------------------------------------- /ioc/fieldname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldname.cpp -------------------------------------------------------------------------------- /ioc/fieldname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldname.h -------------------------------------------------------------------------------- /ioc/fieldnamecomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldnamecomponent.h -------------------------------------------------------------------------------- /ioc/fieldsubscriptionctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldsubscriptionctx.cpp -------------------------------------------------------------------------------- /ioc/fieldsubscriptionctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/fieldsubscriptionctx.h -------------------------------------------------------------------------------- /ioc/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/group.cpp -------------------------------------------------------------------------------- /ioc/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/group.h -------------------------------------------------------------------------------- /ioc/groupconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupconfig.h -------------------------------------------------------------------------------- /ioc/groupconfigprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupconfigprocessor.cpp -------------------------------------------------------------------------------- /ioc/groupconfigprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupconfigprocessor.h -------------------------------------------------------------------------------- /ioc/groupdefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupdefinition.h -------------------------------------------------------------------------------- /ioc/groupprocessorcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupprocessorcontext.cpp -------------------------------------------------------------------------------- /ioc/groupprocessorcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupprocessorcontext.h -------------------------------------------------------------------------------- /ioc/groupsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupsource.cpp -------------------------------------------------------------------------------- /ioc/groupsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupsource.h -------------------------------------------------------------------------------- /ioc/groupsourcehooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupsourcehooks.cpp -------------------------------------------------------------------------------- /ioc/groupsrcsubscriptionctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/groupsrcsubscriptionctx.h -------------------------------------------------------------------------------- /ioc/imagedemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/imagedemo.c -------------------------------------------------------------------------------- /ioc/iochooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iochooks.cpp -------------------------------------------------------------------------------- /ioc/iocshargument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iocshargument.h -------------------------------------------------------------------------------- /ioc/iocshcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iocshcommand.h -------------------------------------------------------------------------------- /ioc/iocshindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iocshindex.h -------------------------------------------------------------------------------- /ioc/iocsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iocsource.cpp -------------------------------------------------------------------------------- /ioc/iocsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/iocsource.h -------------------------------------------------------------------------------- /ioc/localfieldlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/localfieldlog.cpp -------------------------------------------------------------------------------- /ioc/localfieldlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/localfieldlog.h -------------------------------------------------------------------------------- /ioc/pvalink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink.cpp -------------------------------------------------------------------------------- /ioc/pvalink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink.h -------------------------------------------------------------------------------- /ioc/pvalink_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink_channel.cpp -------------------------------------------------------------------------------- /ioc/pvalink_jlif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink_jlif.cpp -------------------------------------------------------------------------------- /ioc/pvalink_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink_link.cpp -------------------------------------------------------------------------------- /ioc/pvalink_lset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvalink_lset.cpp -------------------------------------------------------------------------------- /ioc/pvxs/iochooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvxs/iochooks.h -------------------------------------------------------------------------------- /ioc/pvxs3x.dbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvxs3x.dbd -------------------------------------------------------------------------------- /ioc/pvxs7x.dbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/pvxs7x.dbd -------------------------------------------------------------------------------- /ioc/qsrvpvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/qsrvpvt.h -------------------------------------------------------------------------------- /ioc/securityclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/securityclient.cpp -------------------------------------------------------------------------------- /ioc/securityclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/securityclient.h -------------------------------------------------------------------------------- /ioc/securitylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/securitylogger.h -------------------------------------------------------------------------------- /ioc/singlesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/singlesource.cpp -------------------------------------------------------------------------------- /ioc/singlesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/singlesource.h -------------------------------------------------------------------------------- /ioc/singlesourcehooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/singlesourcehooks.cpp -------------------------------------------------------------------------------- /ioc/singlesrcsubscriptionctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/singlesrcsubscriptionctx.cpp -------------------------------------------------------------------------------- /ioc/singlesrcsubscriptionctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/singlesrcsubscriptionctx.h -------------------------------------------------------------------------------- /ioc/subscriptionctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/subscriptionctx.h -------------------------------------------------------------------------------- /ioc/typeutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/typeutils.cpp -------------------------------------------------------------------------------- /ioc/typeutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/typeutils.h -------------------------------------------------------------------------------- /ioc/yajlcallbackhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/ioc/yajlcallbackhandler.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/pvxslibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pvxslibs/ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/python/pvxslibs/ioc.py -------------------------------------------------------------------------------- /python/pvxslibs/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pvxslibs/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/python/pvxslibs/path.py -------------------------------------------------------------------------------- /python/pvxslibs/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pvxslibs/test/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/python/pvxslibs/test/test_load.py -------------------------------------------------------------------------------- /python/pvxslibs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/python/pvxslibs/version.py -------------------------------------------------------------------------------- /qsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/qsrv/Makefile -------------------------------------------------------------------------------- /qsrv/makeInstallDir.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/qsrv/makeInstallDir.pl -------------------------------------------------------------------------------- /qsrv/softIocPVXExit.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/qsrv/softIocPVXExit.db -------------------------------------------------------------------------------- /qsrv/softMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/qsrv/softMain.cpp -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/release.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/setup.py -------------------------------------------------------------------------------- /setup/CONFIG_PVXS_MODULE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/setup/CONFIG_PVXS_MODULE -------------------------------------------------------------------------------- /setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/setup/Makefile -------------------------------------------------------------------------------- /setup/RULES_PVXS_MODULE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/setup/RULES_PVXS_MODULE -------------------------------------------------------------------------------- /setup/TOOLCHAIN_PVXS.target@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/setup/TOOLCHAIN_PVXS.target@ -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bitmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/bitmask.cpp -------------------------------------------------------------------------------- /src/bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/bitmask.h -------------------------------------------------------------------------------- /src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/client.cpp -------------------------------------------------------------------------------- /src/clientconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientconn.cpp -------------------------------------------------------------------------------- /src/clientdiscover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientdiscover.cpp -------------------------------------------------------------------------------- /src/clientget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientget.cpp -------------------------------------------------------------------------------- /src/clientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientimpl.h -------------------------------------------------------------------------------- /src/clientintrospect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientintrospect.cpp -------------------------------------------------------------------------------- /src/clientmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientmon.cpp -------------------------------------------------------------------------------- /src/clientreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/clientreq.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/conn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/conn.cpp -------------------------------------------------------------------------------- /src/conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/conn.h -------------------------------------------------------------------------------- /src/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/data.cpp -------------------------------------------------------------------------------- /src/dataencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/dataencode.cpp -------------------------------------------------------------------------------- /src/datafmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/datafmt.cpp -------------------------------------------------------------------------------- /src/dataimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/dataimpl.h -------------------------------------------------------------------------------- /src/describe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/describe.cpp -------------------------------------------------------------------------------- /src/describe.h@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/describe.h@ -------------------------------------------------------------------------------- /src/evhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/evhelper.cpp -------------------------------------------------------------------------------- /src/evhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/evhelper.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/nt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/nt.cpp -------------------------------------------------------------------------------- /src/os/WIN32/osdSockExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/os/WIN32/osdSockExt.cpp -------------------------------------------------------------------------------- /src/os/default/osdSockExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/os/default/osdSockExt.cpp -------------------------------------------------------------------------------- /src/osgroups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/osgroups.cpp -------------------------------------------------------------------------------- /src/osiSockExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/osiSockExt.h -------------------------------------------------------------------------------- /src/pvaproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvaproto.h -------------------------------------------------------------------------------- /src/pvrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvrequest.cpp -------------------------------------------------------------------------------- /src/pvrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvrequest.h -------------------------------------------------------------------------------- /src/pvxs/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/client.h -------------------------------------------------------------------------------- /src/pvxs/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/data.h -------------------------------------------------------------------------------- /src/pvxs/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/log.h -------------------------------------------------------------------------------- /src/pvxs/netcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/netcommon.h -------------------------------------------------------------------------------- /src/pvxs/nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/nt.h -------------------------------------------------------------------------------- /src/pvxs/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/server.h -------------------------------------------------------------------------------- /src/pvxs/sharedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/sharedArray.h -------------------------------------------------------------------------------- /src/pvxs/sharedpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/sharedpv.h -------------------------------------------------------------------------------- /src/pvxs/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/source.h -------------------------------------------------------------------------------- /src/pvxs/srvcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/srvcommon.h -------------------------------------------------------------------------------- /src/pvxs/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/unittest.h -------------------------------------------------------------------------------- /src/pvxs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/util.h -------------------------------------------------------------------------------- /src/pvxs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/version.h -------------------------------------------------------------------------------- /src/pvxs/versionNum.h@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/pvxs/versionNum.h@ -------------------------------------------------------------------------------- /src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/server.cpp -------------------------------------------------------------------------------- /src/serverchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serverchan.cpp -------------------------------------------------------------------------------- /src/serverconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serverconn.cpp -------------------------------------------------------------------------------- /src/serverconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serverconn.h -------------------------------------------------------------------------------- /src/serverget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serverget.cpp -------------------------------------------------------------------------------- /src/serverintrospect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serverintrospect.cpp -------------------------------------------------------------------------------- /src/servermon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/servermon.cpp -------------------------------------------------------------------------------- /src/serversource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/serversource.cpp -------------------------------------------------------------------------------- /src/sharedarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/sharedarray.cpp -------------------------------------------------------------------------------- /src/sharedpv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/sharedpv.cpp -------------------------------------------------------------------------------- /src/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/type.cpp -------------------------------------------------------------------------------- /src/udp_collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/udp_collector.cpp -------------------------------------------------------------------------------- /src/udp_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/udp_collector.h -------------------------------------------------------------------------------- /src/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/unittest.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/utilpvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/src/utilpvt.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/benchdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/benchdata.cpp -------------------------------------------------------------------------------- /test/const.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/const.db -------------------------------------------------------------------------------- /test/eatspam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/eatspam.cpp -------------------------------------------------------------------------------- /test/image.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/image.db -------------------------------------------------------------------------------- /test/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/image.json -------------------------------------------------------------------------------- /test/iq.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/iq.db -------------------------------------------------------------------------------- /test/mcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/mcat.cpp -------------------------------------------------------------------------------- /test/ntenum.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/ntenum.db -------------------------------------------------------------------------------- /test/qgroup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/qgroup.cmd -------------------------------------------------------------------------------- /test/qgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/qgroup.json -------------------------------------------------------------------------------- /test/spam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/spam.cpp -------------------------------------------------------------------------------- /test/table.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/table.db -------------------------------------------------------------------------------- /test/test1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/test1000.cpp -------------------------------------------------------------------------------- /test/testbitmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testbitmask.cpp -------------------------------------------------------------------------------- /test/testconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testconfig.cpp -------------------------------------------------------------------------------- /test/testdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testdata.cpp -------------------------------------------------------------------------------- /test/testdiscover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testdiscover.cpp -------------------------------------------------------------------------------- /test/testendian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testendian.cpp -------------------------------------------------------------------------------- /test/testev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testev.cpp -------------------------------------------------------------------------------- /test/testget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testget.cpp -------------------------------------------------------------------------------- /test/testinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testinfo.cpp -------------------------------------------------------------------------------- /test/testioc.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testioc.acf -------------------------------------------------------------------------------- /test/testioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testioc.h -------------------------------------------------------------------------------- /test/testlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testlog.cpp -------------------------------------------------------------------------------- /test/testmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testmon.cpp -------------------------------------------------------------------------------- /test/testmonpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testmonpipe.cpp -------------------------------------------------------------------------------- /test/testnamesrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testnamesrv.cpp -------------------------------------------------------------------------------- /test/testnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testnt.cpp -------------------------------------------------------------------------------- /test/testput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testput.cpp -------------------------------------------------------------------------------- /test/testpvalink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testpvalink.cpp -------------------------------------------------------------------------------- /test/testpvalink.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testpvalink.db -------------------------------------------------------------------------------- /test/testpvreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testpvreq.cpp -------------------------------------------------------------------------------- /test/testqgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testqgroup.cpp -------------------------------------------------------------------------------- /test/testqsingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testqsingle.cpp -------------------------------------------------------------------------------- /test/testqsingle.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testqsingle.db -------------------------------------------------------------------------------- /test/testqsingle64.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testqsingle64.db -------------------------------------------------------------------------------- /test/testqsinglelsi.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testqsinglelsi.db -------------------------------------------------------------------------------- /test/testrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testrpc.cpp -------------------------------------------------------------------------------- /test/testshared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testshared.cpp -------------------------------------------------------------------------------- /test/testsock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testsock.cpp -------------------------------------------------------------------------------- /test/testtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testtype.cpp -------------------------------------------------------------------------------- /test/testudp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testudp.cpp -------------------------------------------------------------------------------- /test/testudpfwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testudpfwd.cpp -------------------------------------------------------------------------------- /test/testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testutil.cpp -------------------------------------------------------------------------------- /test/testwild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testwild.cpp -------------------------------------------------------------------------------- /test/testxcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/test/testxcode.cpp -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/call.cpp -------------------------------------------------------------------------------- /tools/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/get.cpp -------------------------------------------------------------------------------- /tools/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/info.cpp -------------------------------------------------------------------------------- /tools/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/list.cpp -------------------------------------------------------------------------------- /tools/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/monitor.cpp -------------------------------------------------------------------------------- /tools/mshim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/mshim.cpp -------------------------------------------------------------------------------- /tools/put.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/put.cpp -------------------------------------------------------------------------------- /tools/pvxvct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epics-base/pvxs/HEAD/tools/pvxvct.cpp --------------------------------------------------------------------------------