Sponsored Content
Full Discussion: Core dump failures
Operating Systems Solaris Core dump failures Post 302096457 by Tornado on Wednesday 15th of November 2006 10:35:32 PM
Old 11-15-2006
Using the list above...

No such file or directory
The symbolic name for this error is ENOENT, errno=2.
========================================
The specified file or directory does not exist. Either the
file name or path name was entered incorrectly.

Check the file name and path name for correctness and
try again. If the specified file or directory is a symbolic
link, it probably points to a nonexistent file or directory.


Interrupted system call
The symbolic name for this error is EINTR, errno=4.
======================================
The user issued an interrupt signal (usually Control-c)
while the system was in the middle of executing a system
call. When network service is slow, interrupting

cd(1) to a remote-mounted directory can produce this message.

Proceed with your work, this message is purely informational.

An asynchronous signal (such as interrupt or quit), which a program
was set up to catch, occurred during an internal system call. If
execution is resumed after processing the signal, it will appear as if
the interrupted programming function returned this error condition,
so the program might exit with an incorrect error message.
Tornado
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

help, what is the difference between core dump and panic dump?

help, what is the difference between core dump and panic dump? (1 Reply)
Discussion started by: aileen
1 Replies

2. UNIX for Dummies Questions & Answers

core dump

does any one have read a core dump? is there any reader for that? or may i know what is the use of that core which takes sometimes memory in GBs? :) (6 Replies)
Discussion started by: sskb
6 Replies

3. UNIX for Dummies Questions & Answers

core dump

I've got a core dump in my weblogic home directory, which i have tried to debug by initiating savecore from /etc/init.d/savecore start but savecore failed to create the two files, that is vmcore.n and vmunix.n. savecore is enable on my server to save vmcore and vmunix in /var/crash/hostname 1)... (4 Replies)
Discussion started by: hassan2
4 Replies

4. Programming

about core dump

MY friends: my program under sco unix have a problem? it create a core dump file on the path when execute program , but i can't find the error of the C program ,i don't know how to see the error about my program use core, please help me or give me some suggest and what tools can use... (1 Reply)
Discussion started by: zhaohaizhou
1 Replies

5. UNIX for Dummies Questions & Answers

Core dump in HP-UX..

Hi All I am new for this forum. I have a core file by using gdb and bt cmd I got the function name but I want to the exact cause of the core dump because of I can not reproduse the binary so if any one know the cmd plz plz plz let me know. (0 Replies)
Discussion started by: gyanusoni
0 Replies

6. UNIX for Advanced & Expert Users

Core Dump

Hello all, Iam new to unix while executing java program which finely working in windows know iam testing with unix ,but in unix while executing iam getting core dump, my application is in client server environment and it is menu drivrn application on clicking options no problem but after some time... (1 Reply)
Discussion started by: vinp
1 Replies

7. AIX

core dump

My application gives core dump. When i am debugging with dbx getting instructions below: pthdb_session.c, 818: 695445 PTHDB_INTERNAL (internal error) pthreaded.c, 1941: PTHDB_INTERNAL (internal error) Illegal instruction (illegal opcode) in . at 0x0 warning: Unable to access address 0x0... (1 Reply)
Discussion started by: bapi
1 Replies

8. Programming

core dump

how to view core dumped file using gdb and how to extract information from the coredumped file.can we get similar information from the other utilites like strace or ptrace. (2 Replies)
Discussion started by: Manabhanjan
2 Replies

9. UNIX for Dummies Questions & Answers

No core dump

my progrme complaints 'Segmentation fault'. How to let it print 'Segmentation fault(core dumped)' and generate core dump file? $ulimit unlimited (22 Replies)
Discussion started by: vistastar
22 Replies

10. HP-UX

Core dump in HP-UX

Hi Guys, I was wondering if somebody could give me a link to a very good source of information or document about core dump process and How to's about it. I have also googled it and found some articles myself. Thanks Messi (1 Reply)
Discussion started by: messi777
1 Replies
SIGINTERRUPT(3) 					     Library Functions Manual						   SIGINTERRUPT(3)

NAME
siginterrupt - allow signals to interrupt system calls SYNOPSIS
siginterrupt(sig, flag); int sig, flag; DESCRIPTION
Siginterrupt is used to change the system call restart behavior when a system call is interrupted by the specified signal. If the flag is false (0), then system calls will be restarted if they are interrupted by the specified signal and no data has been transferred yet. Sys- tem call restart is the default behavior on 4.2 BSD. If the flag is true (1), then restarting of system calls is disabled. If a system call is interrupted by the specified signal and no data has been transferred, the system call will return -1 with errno set to EINTR. Interrupted system calls that have started transferring data will return the amount of data actually transferred. System call interrupt is the signal behavior found on 4.1 BSD and AT&T System V UNIX systems. Note that the new 4.2 BSD signal handling semantics are not altered in any other way. Most notably, signal handlers always remain installed until explicitly changed by a subsequent sigvec(2) call, and the signal mask operates as documented in sigvec(2). Programs may switch between restartable and interruptible system call operation as often as desired in the execution of a program. Issuing a siginterrupt(3) call during the execution of a signal handler will cause the new action to take place on the next signal to be caught. NOTES
This library routine uses an extension of the sigvec(2) system call that is not available in 4.2BSD, hence it should not be used if back- ward compatibility is needed. RETURN VALUE
A 0 value indicates that the call succeeded. A -1 value indicates that an invalid signal number has been supplied. SEE ALSO
sigvec(2), sigblock(2), sigpause(2), sigsetmask(2). 4.3 Berkeley Distribution May 15, 1985 SIGINTERRUPT(3)
All times are GMT -4. The time now is 02:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy