1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Various fixes (cleanups, valgrind, makefiles, ...)

This commit is contained in:
petr@mysql.com
2005-02-03 20:48:58 +03:00
parent 84d5b3a332
commit 63acf2a8be
18 changed files with 85 additions and 60 deletions

View File

@ -241,6 +241,16 @@ int Instance_options::add_to_argv(const char* option)
return 0;
}
void Instance_options::print_argv()
{
int i;
printf("printing out an instance %s argv:\n", instance_name);
for (i=0; argv[i] != NULL; i++)
{
printf("argv: %s\n", argv[i]);
}
}
/*
We execute this function to initialize some options.