Naming wibbles -- start skin names with a capital letter (they deserve it)

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1198
This commit is contained in:
Julian Seward 2002-10-05 15:49:27 +00:00
parent e4b914c896
commit 704a740e17
9 changed files with 11 additions and 11 deletions

View File

@ -2510,7 +2510,7 @@ Char* SK_(usage)(void)
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs, VgTrackEvents* track)
{
details->name = "addrcheck";
details->name = "Addrcheck";
details->version = NULL;
details->description = "a fine-grained address checker";
details->copyright_author =

View File

@ -1917,7 +1917,7 @@ Char* SK_(usage)(void)
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs,
VgTrackEvents* not_used)
{
details->name = "cachegrind";
details->name = "Cachegrind";
details->version = NULL;
details->description = "an I1/D1/L2 cache profiler";
details->copyright_author =

View File

@ -34,7 +34,7 @@
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs, VgTrackEvents* track)
{
details->name = "coregrind";
details->name = "Coregrind";
details->version = NULL;
details->description = "a rudimentary error detector";
details->copyright_author =

View File

@ -1027,10 +1027,10 @@ static void process_cmd_line_options ( void )
/* Core details */
VG_(message)(Vg_UserMsg,
"Built with valgrind-%s, a program execution monitor.",
VERSION);
"Using valgrind-%s, a program instrumentation system for x86-linux.",
VERSION);
VG_(message)(Vg_UserMsg,
"Copyright (C) 2000-2002, and GNU GPL'd, by Julian Seward.");
"Copyright (C) 2000-2002, and GNU GPL'd, by Julian Seward.");
}
if (VG_(clo_verbosity) > 1) {

View File

@ -7,7 +7,7 @@
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs, VgTrackEvents* track)
{
details->name = "example";
details->name = "Example";
details->version = "0.0.1";
details->description = "an example Valgrind skin";
details->copyright_author =

View File

@ -1334,7 +1334,7 @@ void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs, VgTrackEvents* track)
{
Int i;
details->name = "helgrind";
details->name = "Helgrind";
details->version = NULL;
details->description = "a data race detector";
details->copyright_author =

View File

@ -75,7 +75,7 @@ static void add_one_Jcc_untaken(void)
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* not_used1,
VgTrackEvents* not_used2)
{
details->name = "lackey";
details->name = "Lackey";
details->version = NULL;
details->description = "an example Valgrind skin";
details->copyright_author =

View File

@ -2350,7 +2350,7 @@ Char* SK_(usage)(void)
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* needs, VgTrackEvents* track)
{
details->name = "memcheck";
details->name = "Memcheck (a.k.a. Valgrind)";
details->version = NULL;
details->description = "a memory error detector";
details->copyright_author =

View File

@ -34,7 +34,7 @@
void SK_(pre_clo_init)(VgDetails* details, VgNeeds* not_used1,
VgTrackEvents* not_used2)
{
details->name = "nulgrind";
details->name = "Nulgrind";
details->version = NULL;
details->description = "a binary JIT-compiler";
details->copyright_author =