diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2007-12-07 17:21:53 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2007-12-07 17:21:53 +0000 |
commit | 2cccff443ff96b4a98fa8d9e0e28049d977a1a78 (patch) | |
tree | 98726da75b635d43648b005c5c0e7d469390145f /sys/dev/hwpmc/hwpmc_ia64.c | |
parent | 6667649521f10a8e317c4264ea247c20b4054f7f (diff) | |
download | FreeBSD-src-2cccff443ff96b4a98fa8d9e0e28049d977a1a78.zip FreeBSD-src-2cccff443ff96b4a98fa8d9e0e28049d977a1a78.tar.gz |
Add stub functions to unbreak LINT.
Diffstat (limited to 'sys/dev/hwpmc/hwpmc_ia64.c')
-rw-r--r-- | sys/dev/hwpmc/hwpmc_ia64.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/dev/hwpmc/hwpmc_ia64.c b/sys/dev/hwpmc/hwpmc_ia64.c index af905b6..160be9a 100644 --- a/sys/dev/hwpmc/hwpmc_ia64.c +++ b/sys/dev/hwpmc/hwpmc_ia64.c @@ -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); +} |