diff --git a/dcapi/doc/condor.xml b/dcapi/doc/condor.xml
index 522cc80422..b6ec79645e 100644
--- a/dcapi/doc/condor.xml
+++ b/dcapi/doc/condor.xml
@@ -15,7 +15,7 @@
All files that generated by the application including the master and
- the worker programs and the DC-API library itself are places under a
+ the worker programs and the DC-API library itself are placed under a
directory called working directory.
@@ -62,11 +62,46 @@
+
+ InstanceUUID
+
+
+
+ REQUIRED. Identification of running instance of the
+ application. For CONDOR backend it can be any string not
+ just an UUID.
+
+
+
+
+
+
+ WorkingDirectory
+
+
+
+ REQUIRED. Name of working directory of the
+ application. All files that are generated by the
+ application or the DC-API library are placed under this
+ directory. Different applications can use the same working
+ directory because every instance has its own subdirectory
+ there.
+
+
+
+
+
ClientMessageBox
- default=_dcapi_client_messages
+
+ Name of the directory in workunit's working directory
+ where messages are placed which are sent by the client to
+ the master by DC_sendMessage(). Default
+ value is _dcapi_client_messages.
+
@@ -75,7 +110,13 @@
MasterMessageBox
- default=_dcapi_master_messages
+
+ Name of the directory in workunit's working directory
+ where DC_sendWUMessage()
+ places messaged sent by the master to the client. Default
+ value is _dcapi_master_messages.
+
@@ -84,7 +125,13 @@
SubresultBox
- default=_dcapi_client_subresults
+
+ Name of the directory in workunit's working directory
+ where DC_sendResult()
+ places subresults generated by the client. Default
+ value is _dcapi_client_subresults.
+
@@ -93,16 +140,13 @@
SystemMessageBox
- default=_dcapi_system_messages
-
-
-
-
- Architectures
-
-
- default=Client_%s_%s/* client_name, architecture */
+ Name of the directory in workunit's working directory
+ where the master and client program place management
+ messages for example when the master asks the client to
+ suspend and it sends back an acknowlegde. Default value is
+ _dcapi_system_messages
+
@@ -111,7 +155,12 @@
SubmitFile
- default=_dcapi_condor_submit.txt
+
+ Name of the file in workunit's working directory which is
+ generated by the master and used as submit information for
+ Condor when a workunit is prepared to start. Default value
+ is _dcapi_condor_submit.txt.
+
@@ -120,7 +169,12 @@
Executable
- default=NULL
+
+ Name of the executable file of the client (workunit). By
+ default it is the clientName
+ parameter which was passed to DC_createWU().
+
@@ -129,7 +183,12 @@
LeaveFiles
- default=0
+
+ Specifies if files, directories generated in workunit's
+ working directory should be deleted or not after workunit
+ ends. Zero value means delete and non-zero value means not
+ to delete. Default value is 0.
+
@@ -138,7 +197,12 @@
CondorLog
- default=_dcapi_internal_log.txt
+
+ Name of the file in workunit's working directory where
+ Condor writes records about events happen to the Condor
+ job. Default value is
+ _dcapi_internal_log.txt.
+
@@ -147,7 +211,16 @@
CheckpointFile
- default=_dcapi_checkpoint
+
+ Name of file in workunit's working directory where
+ checkpoint information is written by the
+ client. DC_resolveFileName()
+ will resolve DC_CHECKPOINT_FILE
+ to this name. Default value is
+ _dcapi_checkpoint.
+
@@ -156,7 +229,13 @@
SavedOutputs
- default=_dcapi_saved_output
+
+ Name of directory in workunit's working directory where
+ workunit's standard output is saved when it is
+ suspended. Deafult values is
+ _dcapi_saved_output. There is no
+ facility in the DC-API yet to merge saved output together.
+