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 55aefb655Srie# Common Development and Distribution License (the "License"). 65aefb655Srie# 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 225aefb655Srie# 23090a8d9eSAli Bahrami# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 245aefb655Srie# Use is subject to license terms. 255aefb655Srie# 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate@ _START_ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate# Message file for cmd/sgs/pvs. 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate@ MSG_ID_PVS 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate# Argument usage messages. 357c478bd9Sstevel@tonic-gate 36090a8d9eSAli Bahrami@ MSG_USAGE_BRIEF "usage: %s [-Cdlnorsv] [-I index] [-N Name] file(s)\n" 377c478bd9Sstevel@tonic-gate@ MSG_USAGE_DETAIL "\t[-C]\t\tdemangle C++ symbol names\n\ 387c478bd9Sstevel@tonic-gate \t[-d]\t\tprint version definition information\n\ 39090a8d9eSAli Bahrami \t[-I index]\tqualify version with an index\n\ 407c478bd9Sstevel@tonic-gate \t[-l]\t\tprint reduced symbols\n\ 417c478bd9Sstevel@tonic-gate \t[-N name]\tqualify version with `name'\n\ 427c478bd9Sstevel@tonic-gate \t[-n]\t\tnormalize version definition information\n\ 437c478bd9Sstevel@tonic-gate \t[-o]\t\tone-line version definition output\n\ 447c478bd9Sstevel@tonic-gate \t[-r]\t\tprint version dependency (requirements) \ 457c478bd9Sstevel@tonic-gate information\n\ 467c478bd9Sstevel@tonic-gate \t[-s]\t\tprint version definition symbols\n\ 477c478bd9Sstevel@tonic-gate \t[-v]\t\tprint verbose information\n" 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gate 507c478bd9Sstevel@tonic-gate# Versioning messages. 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gate@ MSG_VER_HIGHREV "%s: warning: %s: version revision %d is \ 537c478bd9Sstevel@tonic-gate higher than expected %d\n" 547c478bd9Sstevel@tonic-gate@ MSG_VER_UNREDSYMS "%s: warning: %s: unable to deduce reduced symbols:\n" 557c478bd9Sstevel@tonic-gate@ MSG_VER_NOTSTTFILE "\tmalformed symbol table[1]=%s: does not equal \ 567c478bd9Sstevel@tonic-gate STT_FILE\n" 577c478bd9Sstevel@tonic-gate@ MSG_VER_NOSYMTAB "\tno symbol table (SHT_SYMTAB) found\n" 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate 607c478bd9Sstevel@tonic-gate# ELF messages 617c478bd9Sstevel@tonic-gate@ MSG_ELF_NOTELF "%s: %s: is not ELF\n" 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate# System error messages 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gate@ MSG_SYS_OPEN "%s: %s: cannot open file: %s\n" 667c478bd9Sstevel@tonic-gate@ MSG_SYS_MALLOC "%s: %s: malloc failed: %s\n" 67090a8d9eSAli Bahrami@ MSG_STR_MATCH_RECORD "match record (-I/-N)" 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gate@ _END_ 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gate# The following strings represent reserved words, files, pathnames and symbols. 727c478bd9Sstevel@tonic-gate# Reference to this strings is via the MSG_ORIG() macro, and thus no message 737c478bd9Sstevel@tonic-gate# translation is required. 747c478bd9Sstevel@tonic-gate 757c478bd9Sstevel@tonic-gate@ MSG_ELF_BEGIN "%s: %s: elf_begin: %s\n" 767c478bd9Sstevel@tonic-gate@ MSG_ELF_GETEHDR "%s: %s: elf_getehdr: %s\n" 777c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSCN "%s: %s: elf_getscn: %s\n" 787c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSHDR "%s: %s: elf_getshdr: %s\n" 797c478bd9Sstevel@tonic-gate@ MSG_ELF_GETDATA "%s: %s: elf_getdata: %s\n" 80*a0563a48SRichard Lowe@ MSG_ELF_GETSHDRNUM "%s: %s: elf_getshdrnum: %s\n" 817c478bd9Sstevel@tonic-gate 827c478bd9Sstevel@tonic-gate@ MSG_STR_EMPTY "" 83090a8d9eSAli Bahrami@ MSG_STR_OPTIONS "CdI:lnorsvN:" 84090a8d9eSAli Bahrami 85090a8d9eSAli Bahrami@ MSG_FMT_COL_NL ":\n" 86090a8d9eSAli Bahrami@ MSG_FMT_SEM_NL ";\n" 87090a8d9eSAli Bahrami@ MSG_FMT_LIST_BEGIN "\t%s (" 88090a8d9eSAli Bahrami@ MSG_FMT_LIST_FIRST "%s" 89090a8d9eSAli Bahrami@ MSG_FMT_LIST_NEXT ", %s" 90090a8d9eSAli Bahrami@ MSG_FMT_LIST_END_SEM ");\n" 91090a8d9eSAli Bahrami@ MSG_FMT_LIST_END_COL "):\n" 92090a8d9eSAli Bahrami@ MSG_FMT_OFIL "%s -" 93090a8d9eSAli Bahrami@ MSG_FMT_TNCO "\t%s:\n" 94090a8d9eSAli Bahrami@ MSG_FMT_TNSE "\t%s;\n" 95090a8d9eSAli Bahrami@ MSG_FMT_VER_NAME "\t%s" 96090a8d9eSAli Bahrami@ MSG_FMT_VER_FLG " [%s]" 97090a8d9eSAli Bahrami 98090a8d9eSAli Bahrami@ MSG_FMT_FILE "%s:\n" 99090a8d9eSAli Bahrami 100090a8d9eSAli Bahrami@ MSG_FMT_SYM_OFIL "%s -\t%s: " 101090a8d9eSAli Bahrami@ MSG_FMT_SYM_NEED_OFIL "%s -\t%s (%s): " 102090a8d9eSAli Bahrami@ MSG_FMT_SYM_OFLG "%s;\n" 103090a8d9eSAli Bahrami@ MSG_FMT_SYM_SZ_OFLG "%s (%ld);\n" 104090a8d9eSAli Bahrami@ MSG_FMT_SYM "\t\t%s;\n" 105090a8d9eSAli Bahrami@ MSG_FMT_SYM_SZ "\t\t%s (%ld);\n" 106090a8d9eSAli Bahrami 107090a8d9eSAli Bahrami@ MSG_FMT_IN ": \t{%s" 108090a8d9eSAli Bahrami@ MSG_FMT_IN_OFLG ": {%s" 109090a8d9eSAli Bahrami@ MSG_FMT_IN_WEAK ":\t{%s" 110090a8d9eSAli Bahrami@ MSG_FMT_IN_END "}" 111090a8d9eSAli Bahrami 112090a8d9eSAli Bahrami@ MSG_FMT_LOCSYM_HDR "\t_LOCAL_:\n" 113090a8d9eSAli Bahrami@ MSG_FMT_LOCSYM "\t\t%s;\n" 114090a8d9eSAli Bahrami@ MSG_FMT_LOCSYM_OFLG "%s -\t_LOCAL_: %s\n" 1157c478bd9Sstevel@tonic-gate 1167c478bd9Sstevel@tonic-gate@ MSG_SUNW_OST_SGS "SUNW_OST_SGS" 117