diff options
author | Jonathan W Adams <Jonathan.Adams@Sun.COM> | 2009-02-06 16:15:27 -0800 |
---|---|---|
committer | Jonathan W Adams <Jonathan.Adams@Sun.COM> | 2009-02-06 16:15:27 -0800 |
commit | 346799e8230991f56d5fd66fb1b895ed057feedc (patch) | |
tree | 04432bd6ea1b4ef760e595186286c7f7438d6f5f /usr/src/cmd/mdb/common/modules/genunix/findstack.h | |
parent | afb806e6e80619e1656bd85fd44a7ab667ed0714 (diff) | |
download | illumos-gate-346799e8230991f56d5fd66fb1b895ed057feedc.tar.gz |
6799290 need to uniquify stacks in kmdb
Diffstat (limited to 'usr/src/cmd/mdb/common/modules/genunix/findstack.h')
-rw-r--r-- | usr/src/cmd/mdb/common/modules/genunix/findstack.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr/src/cmd/mdb/common/modules/genunix/findstack.h b/usr/src/cmd/mdb/common/modules/genunix/findstack.h index e9f23b257a..304735c931 100644 --- a/usr/src/cmd/mdb/common/modules/genunix/findstack.h +++ b/usr/src/cmd/mdb/common/modules/genunix/findstack.h @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,15 +19,13 @@ * CDDL HEADER END */ /* - * Copyright (c) 1999 by Sun Microsystems, Inc. - * All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. */ #ifndef _MDB_FINDSTACK_H #define _MDB_FINDSTACK_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <mdb/mdb_modapi.h> #ifdef __cplusplus @@ -37,7 +34,10 @@ extern "C" { extern int findstack(uintptr_t, uint_t, int, const mdb_arg_t *); extern int findstack_debug(uintptr_t, uint_t, int, const mdb_arg_t *); -extern int findstack_init(void); + +extern int stacks(uintptr_t, uint_t, int, const mdb_arg_t *); +extern void stacks_help(void); +extern void stacks_cleanup(int); #ifdef __cplusplus } |