summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-22 15:38:58 +0000
committerjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-22 15:38:58 +0000
commit8a714b3b8e4a51befa4de873b4ded0b3b86b0642 (patch)
tree6069a60663449c73ff57a3885b8ead38da6bb21a /doc
parent89ac6fa7e2811a18c949a5420f0de9afe584ae0a (diff)
aliased functions INOUT arguments:
* oops, another place where INOUT needs to be mentioned * clarify that OUT or INOUT array arguments may indeed be modified git-svn-id: http://svn.cactuscode.org/flesh/trunk@4324 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc')
-rw-r--r--doc/UsersGuide/ThornWriters.tex5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index b75efb78..4cb2f8cc 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -4237,8 +4237,9 @@ work. These are
modifiable. Any changes made to a scalar argument by a providing
function may be silently lost, or may not; it is dependent on the
language of the providing and calling function. If you wish to
- modify an argument then it must have intent \texttt{OUT} (and hence
- must be either a \texttt{CCTK\_INT} or \texttt{CCTK\_REAL}).
+ modify an argument then it must have intent \texttt{OUT} or \texttt{INOUT}
+ (and hence must be either a \texttt{CCTK\_INT} or \texttt{CCTK\_REAL}),
+ or an array of one of these types.
\item The name of both the aliased and providing function are
restricted. They must follow the standard C semantics (start with a
letter, contain only letters, numbers or underscores). Additionally,