local_heap_sort should really be a static function.
This commit was SVN r26065.
Этот коммит содержится в:
родитель
3d718863a8
Коммит
636cf786be
@ -41,9 +41,9 @@ typedef struct local_io_array{
|
||||
|
||||
|
||||
|
||||
int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted);
|
||||
static int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted);
|
||||
|
||||
|
||||
int
|
||||
@ -1105,9 +1105,9 @@ mca_fcoll_dynamic_file_write_all (mca_io_ompio_file_t *fh,
|
||||
}
|
||||
|
||||
|
||||
int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted)
|
||||
static int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted)
|
||||
{
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
|
@ -40,9 +40,9 @@ typedef struct local_io_array{
|
||||
|
||||
|
||||
|
||||
int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted);
|
||||
static int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted);
|
||||
|
||||
int find_next_index( int proc_index,
|
||||
int c_index,
|
||||
@ -923,9 +923,9 @@ mca_fcoll_static_file_write_all (mca_io_ompio_file_t *fh,
|
||||
|
||||
|
||||
|
||||
int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted)
|
||||
static int local_heap_sort (local_io_array *io_array,
|
||||
int num_entries,
|
||||
int *sorted)
|
||||
{
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user