xref: /onnv-gate/usr/src/cmd/sgs/pvs/common/pvs.msg (revision 7682:b04d06fd448f)
10Sstevel@tonic-gate#
20Sstevel@tonic-gate# CDDL HEADER START
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# The contents of this file are subject to the terms of the
51618Srie# Common Development and Distribution License (the "License").
61618Srie# You may not use this file except in compliance with the License.
70Sstevel@tonic-gate#
80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate# See the License for the specific language governing permissions
110Sstevel@tonic-gate# and limitations under the License.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate#
190Sstevel@tonic-gate# CDDL HEADER END
200Sstevel@tonic-gate#
211618Srie
221618Srie#
23*7682SAli.Bahrami@Sun.COM# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
241618Srie# Use is subject to license terms.
251618Srie#
260Sstevel@tonic-gate
270Sstevel@tonic-gate@ _START_
280Sstevel@tonic-gate
290Sstevel@tonic-gate# Message file for cmd/sgs/pvs.
300Sstevel@tonic-gate
310Sstevel@tonic-gate@ MSG_ID_PVS
320Sstevel@tonic-gate
330Sstevel@tonic-gate
340Sstevel@tonic-gate# Argument usage messages.
350Sstevel@tonic-gate
36*7682SAli.Bahrami@Sun.COM@ MSG_USAGE_BRIEF	"usage: %s [-Cdlnorsv] [-I index] [-N Name] file(s)\n"
370Sstevel@tonic-gate@ MSG_USAGE_DETAIL	"\t[-C]\t\tdemangle C++ symbol names\n\
380Sstevel@tonic-gate			 \t[-d]\t\tprint version definition information\n\
39*7682SAli.Bahrami@Sun.COM			 \t[-I index]\tqualify version with an index\n\
400Sstevel@tonic-gate			 \t[-l]\t\tprint reduced symbols\n\
410Sstevel@tonic-gate			 \t[-N name]\tqualify version with `name'\n\
420Sstevel@tonic-gate			 \t[-n]\t\tnormalize version definition information\n\
430Sstevel@tonic-gate			 \t[-o]\t\tone-line version definition output\n\
440Sstevel@tonic-gate			 \t[-r]\t\tprint version dependency (requirements) \
450Sstevel@tonic-gate			  information\n\
460Sstevel@tonic-gate			 \t[-s]\t\tprint version definition symbols\n\
470Sstevel@tonic-gate			 \t[-v]\t\tprint verbose information\n"
480Sstevel@tonic-gate
490Sstevel@tonic-gate
500Sstevel@tonic-gate# Versioning messages.
510Sstevel@tonic-gate
520Sstevel@tonic-gate@ MSG_VER_HIGHREV	"%s: warning: %s: version revision %d is \
530Sstevel@tonic-gate			 higher than expected %d\n"
540Sstevel@tonic-gate@ MSG_VER_UNREDSYMS	"%s: warning: %s: unable to deduce reduced symbols:\n"
550Sstevel@tonic-gate@ MSG_VER_NOTSTTFILE	"\tmalformed symbol table[1]=%s: does not equal \
560Sstevel@tonic-gate			 STT_FILE\n"
570Sstevel@tonic-gate@ MSG_VER_NOSYMTAB	"\tno symbol table (SHT_SYMTAB) found\n"
580Sstevel@tonic-gate
590Sstevel@tonic-gate
600Sstevel@tonic-gate# ELF messages
610Sstevel@tonic-gate@ MSG_ELF_NOTELF	"%s: %s: is not ELF\n"
620Sstevel@tonic-gate
630Sstevel@tonic-gate# System error messages
640Sstevel@tonic-gate
650Sstevel@tonic-gate@ MSG_SYS_OPEN		"%s: %s: cannot open file: %s\n"
660Sstevel@tonic-gate@ MSG_SYS_MALLOC	"%s: %s: malloc failed: %s\n"
67*7682SAli.Bahrami@Sun.COM@ MSG_STR_MATCH_RECORD	"match record (-I/-N)"
680Sstevel@tonic-gate
690Sstevel@tonic-gate@ _END_
700Sstevel@tonic-gate
710Sstevel@tonic-gate# The following strings represent reserved words, files, pathnames and symbols.
720Sstevel@tonic-gate# Reference to this strings is via the MSG_ORIG() macro, and thus no message
730Sstevel@tonic-gate# translation is required.
740Sstevel@tonic-gate
750Sstevel@tonic-gate@ MSG_ELF_BEGIN		"%s: %s: elf_begin: %s\n"
760Sstevel@tonic-gate@ MSG_ELF_GETEHDR	"%s: %s: elf_getehdr: %s\n"
770Sstevel@tonic-gate@ MSG_ELF_GETSCN	"%s: %s: elf_getscn: %s\n"
780Sstevel@tonic-gate@ MSG_ELF_GETSHDR	"%s: %s: elf_getshdr: %s\n"
790Sstevel@tonic-gate@ MSG_ELF_GETDATA	"%s: %s: elf_getdata: %s\n"
800Sstevel@tonic-gate
810Sstevel@tonic-gate@ MSG_STR_EMPTY		""
82*7682SAli.Bahrami@Sun.COM@ MSG_STR_OPTIONS	"CdI:lnorsvN:"
83*7682SAli.Bahrami@Sun.COM
84*7682SAli.Bahrami@Sun.COM@ MSG_FMT_COL_NL	":\n"
85*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SEM_NL	";\n"
86*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LIST_BEGIN	"\t%s ("
87*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LIST_FIRST	"%s"
88*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LIST_NEXT	", %s"
89*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LIST_END_SEM	");\n"
90*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LIST_END_COL	"):\n"
91*7682SAli.Bahrami@Sun.COM@ MSG_FMT_OFIL		"%s -"
92*7682SAli.Bahrami@Sun.COM@ MSG_FMT_TNCO		"\t%s:\n"
93*7682SAli.Bahrami@Sun.COM@ MSG_FMT_TNSE		"\t%s;\n"
94*7682SAli.Bahrami@Sun.COM@ MSG_FMT_VER_NAME	"\t%s"
95*7682SAli.Bahrami@Sun.COM@ MSG_FMT_VER_FLG	" [%s]"
96*7682SAli.Bahrami@Sun.COM
97*7682SAli.Bahrami@Sun.COM@ MSG_FMT_FILE		"%s:\n"
98*7682SAli.Bahrami@Sun.COM
99*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM_OFIL	"%s -\t%s: "
100*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM_NEED_OFIL	"%s -\t%s (%s): "
101*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM_OFLG	"%s;\n"
102*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM_SZ_OFLG	"%s (%ld);\n"
103*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM		"\t\t%s;\n"
104*7682SAli.Bahrami@Sun.COM@ MSG_FMT_SYM_SZ	"\t\t%s (%ld);\n"
105*7682SAli.Bahrami@Sun.COM
106*7682SAli.Bahrami@Sun.COM@ MSG_FMT_IN		":       \t{%s"
107*7682SAli.Bahrami@Sun.COM@ MSG_FMT_IN_OFLG	": {%s"
108*7682SAli.Bahrami@Sun.COM@ MSG_FMT_IN_WEAK	":\t{%s"
109*7682SAli.Bahrami@Sun.COM@ MSG_FMT_IN_END	"}"
110*7682SAli.Bahrami@Sun.COM
111*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LOCSYM_HDR	"\t_LOCAL_:\n"
112*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LOCSYM	"\t\t%s;\n"
113*7682SAli.Bahrami@Sun.COM@ MSG_FMT_LOCSYM_OFLG	"%s -\t_LOCAL_: %s\n"
1140Sstevel@tonic-gate
1150Sstevel@tonic-gate@ MSG_SUNW_OST_SGS	"SUNW_OST_SGS"
116