Sponsored Content
Top Forums Programming What is an "Illegal Instruction -Core Dumped" Post 39080 by samn on Wednesday 6th of August 2003 09:11:49 AM
Old 08-06-2003
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 successfully and the code is quite large consisting of about 300 files the same is working perfectly fine when compiled and executed on Windows NT/ XP with Exceed( an X window emulation and development environment on PC).

Please advice what to do and i would like to understand when this type of error occurs.


Regards,
Sam .N
 

9 More Discussions You Might Find Interesting

1. Programming

why tell "core dumped"?

why tell core dumped? I am a new .I write a program.I use cc to complier it. when i run it,it tell me "core dumped"? who can tell me the reason? the program as follow: main() { char *a; printf("please input your name:"); scanf("%s",a); printf("\n"); printf("%s",a); } (3 Replies)
Discussion started by: fresh
3 Replies

2. HP-UX

script running with "ksh" dumping core but not with "sh"

Hi, I have small script written in korn shell. When it is called from different script, its dumping core, but no core dump when we run it standalone. And its not dumping core if we run the script using "/bin/sh" instead of "ksh" Can some body please help me how to resolve this issue. ... (9 Replies)
Discussion started by: simhe02
9 Replies

3. 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

4. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

5. Shell Programming and Scripting

How to solve this problem "Illegal Option"

I am just trying to read the password from command prompt that user should type with in 10 seconds, I am getting "read: Illegal option -t" #!/bin/bash ... (1 Reply)
Discussion started by: KarthikPS
1 Replies

6. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

7. UNIX for Dummies Questions & Answers

Find a string across line break (because of "segmentation fault core dumped")

Hi, thanks to a precedent post, and thanks to the reply of derekludwig of the forum, I have convert my first awk command as : test.txt is : AAAAAGHIJKLAjKMEFJKLjklABCDJkLEFGHIJKL awk -f findstring.awk test.txt > textreturn.txtfindstring.awk is : BEGIN{ SLENGTH = 3 } { ... (3 Replies)
Discussion started by: thewizarde6
3 Replies

8. UNIX for Dummies Questions & Answers

Is "stat: illegal option -- -" an issue with hyphenated filename or flag problem?

Hi. I'm trying to install VMWare Workstation to run a virtual machine on my Mac OS, but running the bundle from bash(xterm) sh VMware-workstation-Full-11.0.0-2305329.x86_64.bundle (as suggested in install guide) comes up with error:stat: illegal option -- - usage: stat Digging... (5 Replies)
Discussion started by: defeated
5 Replies

9. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies
Bootloader::Core::LILO(3)				User Contributed Perl Documentation				 Bootloader::Core::LILO(3)

NAME
Bootloader::Core::LILO - LILO library for bootloader configuration PREFACE
This package is the LILO library of the bootloader configuration SYNOPSIS
use Bootloader::Core::LILO; "$obj_ref = Bootloader::Core::LILO->new ();" "$files_ref = Bootloader::Core::LILO->ListFiles ();" "$status = Bootloader::Core::LILO->ParseLines (\%files, $avoid_reading_device_map);" "$files_ref = Bootloader::Core::LILO->CreateLines ();" "$status = Bootloader::Core::LILO->UpdateBootloader ($avoid_init);" "$status = Bootloader::Core::LILO->InitializeBootloader ();" DESCRIPTION
"$obj_ref = Bootloader::Core::LILO->new ();" Creates an instance of the Bootloader::Core::LILO class. "$files_ref = Bootloader::Core::LILO->ListFiles ();" Returns the list of the configuration files of the bootloader Returns undef on fail "$status = Bootloader::Core::LILO->ParseLines (\%files, $avoid_reading_device_map);" Parses the contents of all files and stores the settings in the internal structures. As first argument, it takes a hash reference, where keys are file names and values are references to lists, each member is one line of the file. As second argument, it takes a boolean flag that, if set to a true value, causes it to skip updating the internal device_map information. Returns undef on fail, defined nonzero value on success. "$files_ref = Bootloader::Core::LILO->CreateLines ();" creates contents of all files from the internal structures. Returns a hash reference in the same format as argument of ParseLines on success, or undef on fail. "$status = Bootloader::Core::LILO->UpdateBootloader ($avoid_init);" Updates the settings in the system. Backs original configuration files up and replaces them with the ones with the '.new' suffix. Also performs operations needed to make the change effect (run '/sbin/lilo'). Returns undef on fail, defined nonzero value on success. "$status = Bootloader::Core::LILO->InitializeBootloader ();" Initializes the firmware to boot the bootloader. Returns undef on fail, defined nonzero value otherwise perl v5.12.1 2009-08-03 Bootloader::Core::LILO(3)
All times are GMT -4. The time now is 12:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy