17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 37c478bd9Sstevel@tonic-gate# Use is subject to license terms. 47c478bd9Sstevel@tonic-gate# 57c478bd9Sstevel@tonic-gate# CDDL HEADER START 67c478bd9Sstevel@tonic-gate# 77c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 87c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only 97c478bd9Sstevel@tonic-gate# (the "License"). You may not use this file except in compliance 107c478bd9Sstevel@tonic-gate# with the License. 117c478bd9Sstevel@tonic-gate# 127c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 137c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 147c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 157c478bd9Sstevel@tonic-gate# and limitations under the License. 167c478bd9Sstevel@tonic-gate# 177c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 187c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 197c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 207c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 217c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 227c478bd9Sstevel@tonic-gate# 237c478bd9Sstevel@tonic-gate# CDDL HEADER END 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate@ _START_ 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate# Messages for cmd/sgs/librtld 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate@ MSG_ID_LIBRTLD 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate# System call messages 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate@ MSG_SYS_PROC "%s: /proc error: %s" 367c478bd9Sstevel@tonic-gate@ MSG_SYS_OPEN "%s: open failed: %s" 377c478bd9Sstevel@tonic-gate 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate# Image processing messages 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate@ MSG_IMG_ELF "%s: is not a dynamic ELF object" 427c478bd9Sstevel@tonic-gate@ MSG_IMG_DATASEG "%s: data segment not found" 437c478bd9Sstevel@tonic-gate@ MSG_IMG_DATASEC "%s: final data section not found" 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate 467c478bd9Sstevel@tonic-gate# ELF processing messages 477c478bd9Sstevel@tonic-gate 487c478bd9Sstevel@tonic-gate@ MSG_DT_UNKNOWN "%s: unknown dynamic entry: ignored: %lld" 497c478bd9Sstevel@tonic-gate 507c478bd9Sstevel@tonic-gate 517c478bd9Sstevel@tonic-gate# Basic strings 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gate@ MSG_STR_UNKNOWN "<unknown>" 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate 567c478bd9Sstevel@tonic-gate@ _END_ 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate# The following strings represent reserved section and symbol names. Reference 607c478bd9Sstevel@tonic-gate# to these strings is via the MSG_ORIG() macro, and thus no translations are 617c478bd9Sstevel@tonic-gate# required. 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate@ MSG_FMT_PROC "/proc/%d" 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gate@ MSG_ELF_BEGIN "%s: elf_begin" 667c478bd9Sstevel@tonic-gate@ MSG_ELF_GETDATA "%s: elf_getdata" 677c478bd9Sstevel@tonic-gate@ MSG_ELF_GETEHDR "%s: elf_getehdr" 687c478bd9Sstevel@tonic-gate@ MSG_ELF_GETPHDR "%s: elf_getphdr" 697c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSCN "%s: elf_getscn" 707c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSHDR "%s: elf_getshdr" 71*e4096c82SRichard Lowe@ MSG_ELF_GETSHDRNUM "%s: elf_getshdrnum" 72*e4096c82SRichard Lowe@ MSG_ELF_GETSHDRSTRNDX "%s: elf_getshdrstrndx" 737c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWDATA "%s: elf_newdata" 747c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWEHDR "%s: elf_newehdr" 757c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWPHDR "%s: elf_newphdr" 767c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWSCN "%s: elf_newscn" 777c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWSHDR "%s: elf_newshdr" 787c478bd9Sstevel@tonic-gate@ MSG_ELF_UPDATE "%s: elf_update" 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate@ MSG_SCN_HEAP ".SUNW_heap" 817c478bd9Sstevel@tonic-gate@ MSG_SCN_RELOC ".SUNW_reloc" 827c478bd9Sstevel@tonic-gate@ MSG_SCN_SHSTR ".shstrtab" 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate@ MSG_SYM_END "_end" 857c478bd9Sstevel@tonic-gate@ MSG_SYM_EDATA "_edata" 867c478bd9Sstevel@tonic-gate 877c478bd9Sstevel@tonic-gate@ MSG_SUNW_OST_SGS "SUNW_OST_SGS" 88