xref: /titanic_52/usr/src/cmd/sgs/dump/common/dump.h (revision 4f680cc668fa6cf678c531083400ade9a9c7934c)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5c13de8f6Sab196087  * Common Development and Distribution License (the "License").
6c13de8f6Sab196087  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
227c478bd9Sstevel@tonic-gate  *	Copyright (c) 1988 AT&T
237c478bd9Sstevel@tonic-gate  *	  All Rights Reserved
247c478bd9Sstevel@tonic-gate  *
257c478bd9Sstevel@tonic-gate  *
26*4f680cc6SAli Bahrami  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
27c13de8f6Sab196087  * Use is subject to license terms.
287c478bd9Sstevel@tonic-gate  */
29c13de8f6Sab196087 
30c13de8f6Sab196087 #ifndef	_DUMP_H
31c13de8f6Sab196087 #define	_DUMP_H
32c13de8f6Sab196087 
337c478bd9Sstevel@tonic-gate #include	<sys/elf.h>
347c478bd9Sstevel@tonic-gate #include	<sys/machelf.h>
357c478bd9Sstevel@tonic-gate #include	<gelf.h>
367c478bd9Sstevel@tonic-gate 
37*4f680cc6SAli Bahrami /*
38*4f680cc6SAli Bahrami  * DUMP_CONVFMT defines the libconv formatting options we want to use:
39*4f680cc6SAli Bahrami  *	- Unknown items to be printed as integers using decimal formatting
40*4f680cc6SAli Bahrami  *	- The "Dump Style" versions of strings.
41*4f680cc6SAli Bahrami  */
42*4f680cc6SAli Bahrami #define	DUMP_CONVFMT (CONV_FMT_DECIMAL|CONV_FMT_ALT_DUMP)
43*4f680cc6SAli Bahrami 
447c478bd9Sstevel@tonic-gate #define	DATESIZE 60
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate typedef struct scntab {
477c478bd9Sstevel@tonic-gate 	char		*scn_name;
487c478bd9Sstevel@tonic-gate 	Elf_Scn		*p_sd;
497c478bd9Sstevel@tonic-gate 	GElf_Shdr	p_shdr;
507c478bd9Sstevel@tonic-gate } SCNTAB;
517c478bd9Sstevel@tonic-gate 
52c13de8f6Sab196087 #endif	/* _DUMP_H */
53