- Eliminate warnings, that PGI-6.2.5 issues with -Minform=inform
This commit was SVN r13840.
Этот коммит содержится в:
родитель
c5d8c221b0
Коммит
0889ebd59f
@ -39,7 +39,7 @@ OBJ_CLASS_INSTANCE(ompi_pointer_array_t, opal_object_t,
|
||||
/*
|
||||
* ompi_pointer_array constructor
|
||||
*/
|
||||
void ompi_pointer_array_construct(ompi_pointer_array_t *array)
|
||||
static void ompi_pointer_array_construct(ompi_pointer_array_t *array)
|
||||
{
|
||||
OBJ_CONSTRUCT(&array->lock, opal_mutex_t);
|
||||
array->lowest_free = 0;
|
||||
@ -51,7 +51,7 @@ void ompi_pointer_array_construct(ompi_pointer_array_t *array)
|
||||
/*
|
||||
* ompi_pointer_array destructor
|
||||
*/
|
||||
void ompi_pointer_array_destruct(ompi_pointer_array_t *array)
|
||||
static void ompi_pointer_array_destruct(ompi_pointer_array_t *array)
|
||||
{
|
||||
/* free table */
|
||||
if( NULL != array->addr) {
|
||||
|
@ -275,7 +275,7 @@ request_progress_thread(opal_object_t *arg)
|
||||
#endif /* OMPI_ENABLE_PROGRESS_THREADS */
|
||||
|
||||
void
|
||||
mca_io_base_request_progress_init()
|
||||
mca_io_base_request_progress_init(void)
|
||||
{
|
||||
mca_io_base_request_num_pending = 0;
|
||||
|
||||
@ -294,7 +294,7 @@ mca_io_base_request_progress_init()
|
||||
|
||||
|
||||
void
|
||||
mca_io_base_request_progress_add()
|
||||
mca_io_base_request_progress_add(void)
|
||||
{
|
||||
#if OMPI_ENABLE_PROGRESS_THREADS
|
||||
/* if we don't have a progress thread, make us have a progress
|
||||
@ -318,14 +318,14 @@ mca_io_base_request_progress_add()
|
||||
|
||||
|
||||
void
|
||||
mca_io_base_request_progress_del()
|
||||
mca_io_base_request_progress_del(void)
|
||||
{
|
||||
OPAL_THREAD_ADD32(&mca_io_base_request_num_pending, -1);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
mca_io_base_request_progress_fini()
|
||||
mca_io_base_request_progress_fini(void)
|
||||
{
|
||||
#if OMPI_ENABLE_PROGRESS_THREADS
|
||||
void *ret;
|
||||
|
@ -49,7 +49,7 @@ static int mca_rcache_vma_component_open(void)
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
mca_rcache_base_module_t* mca_rcache_vma_component_init(void) {
|
||||
static mca_rcache_base_module_t* mca_rcache_vma_component_init(void) {
|
||||
mca_rcache_vma_module_t* rcache;
|
||||
|
||||
rcache = (mca_rcache_vma_module_t*) malloc(sizeof(mca_rcache_vma_module_t));
|
||||
|
@ -27,7 +27,7 @@
|
||||
/*
|
||||
* local prototypes
|
||||
*/
|
||||
int mca_base_msgbuf_init (void);
|
||||
static int mca_base_msgbuf_init (void);
|
||||
|
||||
|
||||
|
||||
@ -110,7 +110,7 @@ int mca_base_msgbuf_unpack_string (mca_base_msgbuf_t bufid, char* strptr,
|
||||
|
||||
/* private functions just inside this code */
|
||||
|
||||
int mca_base_msgbuf_init ()
|
||||
static int mca_base_msgbuf_init (void)
|
||||
{
|
||||
if (initialized) return (0);
|
||||
return OPAL_ERR_NOT_SUPPORTED;
|
||||
|
@ -539,7 +539,7 @@ static int pls_slurm_signal_proc(const orte_process_name_t *name, int32_t signal
|
||||
/**
|
||||
* Cancel an operation involving comm to an orted
|
||||
*/
|
||||
int pls_slurm_cancel_operation(void)
|
||||
static int pls_slurm_cancel_operation(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
|
@ -989,7 +989,7 @@ static int orte_console_send_command(orte_daemon_cmd_flag_t usercmd)
|
||||
return ORTE_SUCCESS;
|
||||
}
|
||||
|
||||
char *orte_console_get_input_line()
|
||||
static char *orte_console_get_input_line(void)
|
||||
{
|
||||
char *ret, *buff;
|
||||
char input[ORTE_CONSOLE_MAX_LINE_LENGTH];
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user