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
85023706
Commit
85023706
authored
11 years ago
by
benjamin.franksen
Browse files
Options
Downloads
Patches
Plain Diff
documented new features of pvGetComplete
parent
71d09400
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
documentation/Reference.txt
+21
-3
21 additions, 3 deletions
documentation/Reference.txt
with
21 additions
and
3 deletions
documentation/Reference.txt
+
21
−
3
View file @
85023706
...
...
@@ -1212,7 +1212,8 @@ pvPutComplete
boolean pvPutComplete(assigned_var, boolean any, boolean *pComplete)
Returns whether the last asynchronous :c:func:`pvPut` to this process
variable has completed.
variable has completed. This call is appropriate only if
the :c:func:`pvGet` 's optional ``ASYNC`` argument was used.
The first form is appropriate when the SNL variable is a scalar.
However, it can also be an array (each of whose elements may be
...
...
@@ -1285,8 +1286,8 @@ pvGetComplete
.. c:function::
boolean pvGetComplete(assigned_var)
Returns whether the last
get of this process variable has completed,
i.e. the value in the
variable
i
s c
urrent
. This call is appropriate only if
Returns whether the last
asynchronous :c:func:`pvGet` to this process
variable
ha
s c
ompleted
. This call is appropriate only if
the asynchronous (:option:`+a`) compile option is specified or
:c:func:`pvGet` 's optional ``ASYNC`` argument was used.
...
...
@@ -1294,6 +1295,23 @@ In :ref:`safe mode`, the the state set local copy of the variable will be
updated with the value from the PV layer as a side effect of this call
(if TRUE is returned).
.. versionadded:: 2.2
.. c:function::
boolean pvGetComplete(assigned_var, boolean any)
boolean pvGetComplete(assigned_var, boolean any, boolean *pComplete)
The first form is appropriate when the SNL variable is a scalar.
However, it can also be an array (each of whose elements may be
assigned to a different process variable). In this case, the
single argument form returns whether *all* :c:func:`pvGet` operations
for elements of the array have completed (missing arguments are
implicitly set to ``0``). If ``any`` is ``TRUE``, then
the function returns whether *any* get has completed since the last
call. If ``pComplete`` is non-NULL, it should be an array of
at least the array length of the SNL variable and its elements indicate
whether the corresponding :c:func:`pvGet` has completed.
pvGetCancel
^^^^^^^^^^^
...
...
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