![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Custom error page when tomcat authentication fails | sebagra | UNIX and Linux Applications | 0 | 05-06-2008 02:10 PM |
| awk error in sorting text file | karthikn7974 | Shell Programming and Scripting | 3 | 05-06-2008 01:19 AM |
| SED for text file modification | gfhgfnhhn | Shell Programming and Scripting | 6 | 07-07-2006 05:41 AM |
| linking unix generated text file to html page | alexd | Shell Programming and Scripting | 1 | 11-13-2002 09:21 AM |
| Is there a way scroll text instead of page? | darthur | UNIX for Dummies Questions & Answers | 12 | 01-03-2002 07:34 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Text Modification and page I/O error
Hi!,
while launching my C application on HP-UX 10.2 workstation, I get the following error message sometime: Pid 9951 killed due to text modification or page I/O error Could someone tell me what does this error means?? and how is this caused? Thanx in Advance, JP |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
try to check the free size of
/tmp I think this error due to an error on allocation of page memory (paging) good luck |
|
#3
|
|||
|
|||
|
Hi!!,
only 15% of the memery in /tmp is used. Thats enough memory free to save from Paging error. And I just dont have any idea what does this " Text Modification" means. Thanx, JP |
|
#4
|
||||
|
||||
|
When a process is running it may not all be in memory at once. Instead it pages in and out as needed. The "text" of process is stuff that doesn't change...including the machine language instructions. The kernel went to fetch another page of text from the executable on behalf of your process. But it failed. So it kills the process and issues the message you saw. If you are getting a lot of these you may have a hardware problem or a kernal problem. If you are running an nfs mounted executable and someone updates that executable on another client or the server, you will get this error.
|
|
#5
|
|||
|
|||
|
Thanx a Ton Perderabo,
your suggestion gives me sufficient insight to look into the problem. |
|||
| Google The UNIX and Linux Forums |