Add stub functions to unbreak LINT.

This commit is contained in:
Joseph Koshy 2007-12-07 17:21:53 +00:00
parent 157deb6a4e
commit 9596916c4d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174410
4 changed files with 80 additions and 0 deletions

View file

@ -38,3 +38,23 @@ pmc_md_initialize()
{
return NULL;
}
int
pmc_save_kernel_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}
int
pmc_save_user_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}

View file

@ -38,3 +38,23 @@ pmc_md_initialize()
{
return NULL;
}
int
pmc_save_kernel_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}
int
pmc_save_user_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}

View file

@ -38,3 +38,23 @@ pmc_md_initialize()
{
return NULL;
}
int
pmc_save_kernel_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}
int
pmc_save_user_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}

View file

@ -38,3 +38,23 @@ pmc_md_initialize()
{
return NULL;
}
int
pmc_save_kernel_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}
int
pmc_save_user_callchain(uintptr_t *cc, int maxsamples,
struct trapframe *tf)
{
(void) cc;
(void) maxsamples;
(void) tf;
return (0);
}