Sponsored Content
Full Discussion: Illegal Instruction error
Operating Systems Solaris Illegal Instruction error Post 302902883 by Perderabo on Thursday 22nd of May 2014 03:32:36 PM
Old 05-22-2014
Quote:
Originally Posted by achenle
He's not getting SIGILL, he's getting SIGSEGV
He edited the first post completely changing the character of his problem.
 

10 More Discussions You Might Find Interesting

1. Programming

What is an "Illegal Instruction -Core Dumped"

Hai! i am working on Digital UNIX V3.2c Work station, my program uses Pro*C, C and X-Motif calls. i am facing problem while running application saying "Illegal Instruction Core Dumped". debugger dbx shows error at a line which shows "noname". when commenting large portion of the code it runs... (1 Reply)
Discussion started by: samn
1 Replies

2. UNIX for Dummies Questions & Answers

2489 Illegal instruction

Hello I am trying to execute a back up from one queue manager from one script saveqmgr.sh but I am getting 2489 Illegal instruction on line 16 $ sh +x ./saveqmgr.sh S1SEAGULL QueueManager=S1SEAGULL Retention= S1SEAGULL.MQS.14Jan2005 not found ./saveqmgr.sh: 2836 Illegal... (1 Reply)
Discussion started by: ana
1 Replies

3. Shell Programming and Scripting

Illegal instruction(coredump)

Hi I am trying to execute a simple grep command looking for records in a filename that start with 01 (grep ^01 filename) and am getting the error Illegal instruction(coredump). Has anyone any idea why this happens? Is it due to the file being corrupted? Thanks (1 Reply)
Discussion started by: colinmas
1 Replies

4. UNIX for Advanced & Expert Users

Case Instruction

Hi, this is my script to make a choice between 4 : clear echo " choose a profile and enter a number" echo echo " 1- oraSTT " echo echo " 2- appSTT " echo... (3 Replies)
Discussion started by: big123456
3 Replies

5. Solaris

what is that 1 in the instruction!~ (please help fast)

Hi all, make_lofs /.cdrom/<something>/<something> 1 what does this instruction mean? Note:both the "something" are obviously different . I would like to know what that 1 means, the rest of the instruction is clear!! Thanks (6 Replies)
Discussion started by: wrapster
6 Replies

6. UNIX for Dummies Questions & Answers

What's the difference between Segmentation fault and Bus error and Illegal...?

What's the difference between Segmentation fault and Bus error and Illegal instruction? Sometimes I got the one, and sometimes i got another, what are their differences? Segmentation fault (core dump)? Bus error (core dump)? Illegal instruction (core dump) Thanks Daniel (2 Replies)
Discussion started by: lakeat
2 Replies

7. UNIX for Dummies Questions & Answers

Error: "logger: illegal option -- p"

Hi All, I am working on a Solaris 10 server. From this month start, it gives the error "logger: illegal option -- p" with each command. If I execute a script whose output shown on terminal, it comes many times.. Could you please help? It comes only for my login. And I dont remember any changes... (4 Replies)
Discussion started by: jaiseaugustine
4 Replies

8. Shell Programming and Scripting

Open_ssh installation instruction ?

Hi , Currently the machine (solaris 10 ) is running with Sun_ssh. I would like to move to Open_ssh. I went through google. Each link shows different directions/ways to install openssh. I am not sure which one to follow . Installing OpenSSH Packages - SPARC and Intel x86/Solaris 9 and... (1 Reply)
Discussion started by: frintocf
1 Replies

9. UNIX for Advanced & Expert Users

Illegal character in prototype Perl error in AIX server

HI All , I am using AIX version 6 . having issue with below perl code, sub Article ($procudure, @params) { my ($procudure, @params) = @_; #Get handle TO Dataware House DATABASE try { my $dbHandle = &Cobol::DBAccess::getDBDwConnection(); ,,,,,,,,,,,,, ,,,,,,,,,,,,... (3 Replies)
Discussion started by: Perlbaby
3 Replies

10. Shell Programming and Scripting

Cp –r instruction

Pleas I want answer to this question? Pleas help me A system administrator suspects that there is an attack on his machine; he needs to make a backup of the files to check when they have been modified. For this purpose he uses the "cp -r" instruction to copy the root directory. What is the... (1 Reply)
Discussion started by: tamer11007
1 Replies
iec(1)							      General Commands Manual							    iec(1)

NAME
iec - Instruction Emulator Control SYNOPSIS
iec p | s [value] iec p | s [keyword] OPTIONS
The following options are used with the iec command: Sets or displays the current option setting for the parent process. Sets or displays the current option setting for the system. The following keywords are used with the p option: Resets the current option settings to the default settings for the parent process. Does not print the instruction emulation warning message for the parent process. Disables instruction emulation. Any programs that attempt to execute instructions that are not implemented in the host processor will receive the SIGILL (illegal instruction) signal. Prints the instruction emulation warning messages for all instances of instruction emulation. By default, a message is only printed for the first instance. The following keywords are used with the s option: Resets the current option settings to the default settings for the system. Does not print the instruction emulation warning message for the system. If value is not specified, the current option setting is displayed. You can specify value as either 0 (zero) or 1 (one). If value is 0 (zero), the option is turned on and messages are not displayed. If value is 1 (one), the option is turned off and messages are displayed. Keywords can be used singly or in any combination. However, the reset keyword overrides any other keywords that it is used with. Usually, the parent process is the shell. DESCRIPTION
Some processors in the Alpha processor family do not implement all of the instructions defined in the Alpha architecture. The operating system provides an instruction emulator that permits all programs written for the Alpha architecture to run, regardless of the Alpha pro- cessor being used. When the operating system encounters an instruction that is not implemented by the host processor, the default action is to emulate the instruction and print a message informing the user process that the emulation has occurred. By default, the operating system prints a mes- sage only for the first instance of emulation, although it continues to emulate any other non-implemented instructions that it encounters. The message has the form: "inst emulated pid=nnn <prog_name> va=0xvirtual_addrpc=0xpc_addr inst=0xactual_instr". Receiving this message tells you that your application will run at less than its optimal level of performance. You may wish to recompile your program to get bet- ter performance. For information on how to compile for a specific hardware platform, see the compiler manpage for the language you are using. In addition, the default action for the operating system is to not deliver a SIGILL signal to the parent process when an emulated instruc- tion is encountered. These defaults are satisfactory for most users, but some users require a different behavior and want to specify their own Instruction Emu- lator Control (IEC). The iec command enables or disables the display of "inst emulated" messages. The command sets or displays the IEC_NOPRINT, IEC_NOEMUL, and IEC_VERBOSE flags, as defined in setsysinfo(2). RESTRICTIONS
You must be superuser to set the system option. EXAMPLES
Both of the following commands disable messages for the parent process: # iec p 0 # iec p noprint Both of the following commands enable messages for the system: # iec s 1 # iec s reset The following command enables the printing of a message for each emulated instruction: # iec p verbose SEE ALSO
getsysinfo(2), setsysinfo(2) iec(1)
All times are GMT -4. The time now is 06:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy