Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent the rest of the code (examples, buildtools, doc...) except for examples/SMPI...
[simgrid.git] / tools / tesh2 / include / command.h
index 1d57cb1..c438cd2 100644 (file)
  *             This file contains all the declarations of the functions related with\r
  *             the tesh command type.\r
  *\r
- */\r
\r
+ */  \r
+    \r
 #ifndef __COMMAND_H\r
 #define __COMMAND_H\r
-\r
+    \r
 #include <com.h>\r
-\r
+    \r
 #ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
+extern "C" {
+  \r
+#endif  /* \r */
+  \r
 /*! \brief command_new - create a new fstream.\r
  *\r
  * \param unit                 The unit contained the command.\r
@@ -38,10 +39,10 @@ extern "C" {
  *                                             [EINVAL] if one of the parameters is invalid.\r
  *                                             [ENOMEM] if the system has not enough space to allocate\r
  *                                                              the command.\r
- */\r
-command_t\r
-command_new(unit_t unit, context_t context, xbt_os_mutex_t mutex);\r
-\r
+ */ \r
+  command_t \r
+      command_new(unit_t unit, context_t context, xbt_os_mutex_t mutex);
+  \r \r
 /*! \brief command_free - destroy a command object.\r
  *\r
  * \param ptr                  A pointer to the command object to destroy.\r
@@ -53,10 +54,9 @@ command_new(unit_t unit, context_t context, xbt_os_mutex_t mutex);
  * errors :\r
  *                                             [EINVAL] if the command object pointed to by the ptr parameter is invalid.\r
  *                                     \r
- */\r
-int\r
-command_free(command_t* ptr);\r
-\r
+ */ \r
+  int \r command_free(command_t * ptr);
+  \r \r
 /*! \brief command_run - run a command object.\r
  *\r
  * \param command              The command to run.\r
@@ -72,32 +72,28 @@ command_free(command_t* ptr);
  *                                             The type of running (asynchonus or no) depend of the\r
  *                                             context of the command.\r
  *                                     \r
- */\r
-int\r
-command_run(command_t command);\r
-\r
+ */ \r
+  int \r command_run(command_t command);
+  \r \r
 /*! \brief command_exec - execute a command object.\r
  *\r
  * \param command              The command object to run.\r
  * \param command_line The command line of the process to create.                              \r
- */\r
-void\r
-command_exec(command_t command, const char* command_line);\r
-\r
+ */ \r
+  void \r command_exec(command_t command, const char *command_line);
+  \r\r
 /*! \brief command_wait - wait for the end of a command.\r
  *\r
  * \param command              The command object to wait for.         \r
- */\r
-void\r
-command_wait(command_t command);\r
-\r
+ */ \r
+  void \r command_wait(command_t command);
+  \r \r
 /*! \brief command_interrupt - wait for the end of a command.\r
  *\r
  * \param command              The command object to interrupt.                \r
- */\r
-void\r
-command_interrupt(command_t command);\r
-\r
+ */ \r
+  void \r command_interrupt(command_t command);
+  \r \r
 /*! \brief command_summarize - print the summary of the execution of a command.\r
  *\r
  * \param command              The command object to display the summary.      \r
@@ -106,10 +102,9 @@ command_interrupt(command_t command);
  *                                             The summary of the command is displayed only if the user\r
  *                                             specifies both summary and detail-summary options on the\r
  *                                             tesh command line.\r
- */\r
-void\r
-command_summarize(command_t command);\r
-\r
+ */ \r
+  void \r command_summarize(command_t command);
+  \r \r
 /*! \brief command_handle_failure - handle a failure caused by a command.\r
  *\r
  * \param command              The command to handle the failure.      \r
@@ -121,17 +116,13 @@ command_summarize(command_t command);
  *                                             keep-going on the command line of tesh, only the unit \r
  *                                             containing the failed command is interrupted and all \r
  *                                             other units continue.\r
- */\r
-void\r
-command_handle_failure(command_t command, cs_reason_t reason);\r
-\r
-void command_kill(command_t command);\r
-\r
-void\r
-command_check(command_t command);\r
-\r
+ */ \r
+  void \r command_handle_failure(command_t command, cs_reason_t reason);
+  \r \r void command_kill(command_t command);
+  \r \r void \r command_check(command_t command);
+  \r \r
 #ifdef __cplusplus\r
-}\r
-#endif\r
+} \r
+#endif  /* \r */
 \r
-#endif /* !_COMMAND_H */\r
+#endif  /* !_COMMAND_H */\r