Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sequencer-2-2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
epics-modules
sequencer-2-2
Commits
71d09400
Commit
71d09400
authored
11 years ago
by
benjamin.franksen
Browse files
Options
Downloads
Patches
Plain Diff
documented extra timeout argument for pvGet and pvPut
parent
b18d8a37
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
documentation/Reference.txt
+14
-0
14 additions, 0 deletions
documentation/Reference.txt
with
14 additions
and
0 deletions
documentation/Reference.txt
+
14
−
0
View file @
71d09400
...
@@ -1141,6 +1141,7 @@ pvPut
...
@@ -1141,6 +1141,7 @@ pvPut
.. c:function::
.. c:function::
pvStat pvPut(assigned_var)
pvStat pvPut(assigned_var)
pvStat pvPut(assigned_var, SYNC)
pvStat pvPut(assigned_var, SYNC)
pvStat pvPut(assigned_var, SYNC, timeout)
pvStat pvPut(assigned_var, ASYNC)
pvStat pvPut(assigned_var, ASYNC)
Puts (or writes) the value of an SNL variable to the underlying process
Puts (or writes) the value of an SNL variable to the underlying process
...
@@ -1195,6 +1196,12 @@ clause.
...
@@ -1195,6 +1196,12 @@ clause.
Note that for anonymous PVs completion is always immediate, so the ``ASYNC`` option
Note that for anonymous PVs completion is always immediate, so the ``ASYNC`` option
is not very useful.
is not very useful.
.. versionadded:: 2.2
A timeout value may be specified after the ``SYNC`` argument. This should be
a positive floating point number, specifying the number of seconds before
the request times out. This value overrides the default timeout of 10 seconds.
pvPutComplete
pvPutComplete
^^^^^^^^^^^^^
^^^^^^^^^^^^^
...
@@ -1236,6 +1243,7 @@ pvGet
...
@@ -1236,6 +1243,7 @@ pvGet
.. c:function::
.. c:function::
pvStat pvGet(assigned_var)
pvStat pvGet(assigned_var)
pvStat pvGet(assigned_var, SYNC)
pvStat pvGet(assigned_var, SYNC)
pvStat pvGet(assigned_var, SYNC, timeout)
pvStat pvGet(assigned_var, ASYNC)
pvStat pvGet(assigned_var, ASYNC)
Gets (or reads) the value of an SNL variable from the underlying process
Gets (or reads) the value of an SNL variable from the underlying process
...
@@ -1264,6 +1272,12 @@ until a call to pvGetComplete is made and returns ``TRUE`` or, if the
...
@@ -1264,6 +1272,12 @@ until a call to pvGetComplete is made and returns ``TRUE`` or, if the
variable is monitored, until the state set waits for events in a :token:`when`
variable is monitored, until the state set waits for events in a :token:`when`
clause. Note that anonymous PVs behave exactly in the same way.
clause. Note that anonymous PVs behave exactly in the same way.
.. versionadded:: 2.2
A timeout value may be specified after the ``SYNC`` argument. This should be
a positive floating point number, specifying the number of seconds before
the request times out. This value overrides the default timeout of 10 seconds.
pvGetComplete
pvGetComplete
^^^^^^^^^^^^^
^^^^^^^^^^^^^
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment