Skip to content
Snippets Groups Projects
Commit 2630be23 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

[cleanup] InitParallel: remove `argc` and `argv` parameters

parent 577cd2a6
No related branches found
No related tags found
1 merge request!98Cleanup
......@@ -146,7 +146,7 @@ INT NS_DIM_PREFIX InitUg (int *argcp, char ***argvp)
/* init parallelization module */
#ifdef ModelP
PRINTDEBUG (init, 1, (" InitParallel()...\n"))
if ((err = InitParallel (argcp, argvp)) != 0)
if ((err = InitParallel()) != 0)
{
printf
("ERROR in InitUg while InitParallel (line %d): called routine line %d\n",
......
......@@ -77,11 +77,7 @@ using namespace PPIF;
InitParallel - Call of the initfunctions for all parallel modules
SYNOPSIS:
INT InitParallel (int *argcp, char ***argvp);
PARAMETERS:
. argcp - pointer to argument counter
. argvp - pointer to argument vector
INT InitParallel();
DESCRIPTION:
This function initializes.
......@@ -93,7 +89,7 @@ using namespace PPIF;
D*/
/****************************************************************************/
INT NS_DIM_PREFIX InitParallel (int *argcp, char ***argvp)
INT NS_DIM_PREFIX InitParallel()
{
INT err;
......
......@@ -37,7 +37,7 @@ START_UGDIM_NAMESPACE
/****************************************************************************/
/* initialisation of the parallel modules */
INT InitParallel (int *argcp, char ***argvp);
INT InitParallel();
INT ExitParallel (void);
END_UGDIM_NAMESPACE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment