1
1

One typo and one UNIX conversion of EOL.

This commit was SVN r11430.
Этот коммит содержится в:
George Bosilca 2006-08-25 23:22:35 +00:00
родитель 522cae342b
Коммит c03b9ce679
3 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -33,7 +33,7 @@
/* /*
* Instantiation of class descriptor for the base class. This is * Instantiation of class descriptor for the base class. This is
* special, since be mark it as already initialized, with no parent * special, since be mark it as already initialized, with no parent
* and no constructor or desctructor * and no constructor or destructor.
*/ */
opal_class_t opal_object_t_class = { opal_class_t opal_object_t_class = {
"opal_object_t", /* name */ "opal_object_t", /* name */

Просмотреть файл

@ -30,8 +30,8 @@
#endif #endif
#include "opal/util/few.h" #include "opal/util/few.h"
#include "opal/util/basename.h" #include "opal/util/basename.h"
#include "opal/util/argv.h" #include "opal/util/argv.h"
#include "opal/constants.h" #include "opal/constants.h"
int opal_few(char *argv[], int *status) int opal_few(char *argv[], int *status)

Просмотреть файл

@ -482,5 +482,15 @@ OPAL_DECLSPEC OBJ_CLASS_DECLARATION(opal_output_stream_t);
} }
#endif #endif
/**
* Declare the class of this type. Note that the constructor for
* this class is for convenience only -- it is \em not necessary
* to be invoked. If the constructor it used, it sets all values
* in the struct to be false / 0 (i.e., turning off all output).
* The intended usage is to invoke the constructor and then enable
* the output fields that you want.
*/
OBJ_CLASS_DECLARATION(opal_output_stream_t);
#endif /* OPAL_OUTPUT_H_ */ #endif /* OPAL_OUTPUT_H_ */