@@ -195,7 +195,7 @@ BEGIN_C_DECLS
195
195
OPAL_CMD_LINE_OTYPE_DVM ,
196
196
OPAL_CMD_LINE_OTYPE_UNSUPPORTED ,
197
197
OPAL_CMD_LINE_OTYPE_PARSABLE ,
198
- OPAL_CMD_LINE_OTYPE_NULL
198
+ OPAL_CMD_LINE_OTYPE_NULL /* include in full help only */
199
199
};
200
200
/**
201
201
* \internal
@@ -286,16 +286,17 @@ BEGIN_C_DECLS
286
286
*
287
287
* \code
288
288
* opal_cmd_line_init_t cmd_line_init[] = {
289
- * { NULL, NULL, NULL, 'h', NULL, "help", 0,
289
+ * { NULL, 'h', NULL, "help", 0,
290
290
* &orterun_globals.help, OPAL_CMD_LINE_TYPE_BOOL,
291
- * "This help message" },
291
+ * "This help message", OPAL_CMD_LINE_OTYPE_GENERAL },
292
292
*
293
- * { NULL, NULL, NULL, '\0', NULL, "wd", 1,
293
+ * { NULL, '\0', NULL, "wd", 1,
294
294
* &orterun_globals.wd, OPAL_CMD_LINE_TYPE_STRING,
295
- * "Set the working directory of the started processes" },
295
+ * "Set the working directory of the started processes",
296
+ * OPAL_CMD_LINE_OTYPE_LAUNCH },
296
297
*
297
- * { NULL, NULL, NULL, '\0', NULL, NULL, 0,
298
- * NULL, OPAL_CMD_LINE_TYPE_NULL, NULL }
298
+ * { NULL, '\0', NULL, NULL, 0,
299
+ * NULL, OPAL_CMD_LINE_TYPE_NULL, NULL, OPAL_CMD_LINE_OTYPE_NULL }
299
300
* };
300
301
* \endcode
301
302
*/
0 commit comments