no it doesnt log anything
and also the client isnt aborting server
Main Topics
Browse All Topicshi
i am running linux fedora core 3
i have this client/server prog , it was already written , and it ran properly in earlier
there were no modification to code.
but now when i run it i m getting a "Aborted" message
and the client quits , the server keeps running
what do u mean by this aborted message and why does it happen.
this is urgent
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi :-)
This smells like something in the environment has changed.
Do you know of any temporary directory it writes to? Does it exist?
Try running both the client and the server under strace.
strace ./server_app
It will output many debug lines showing the system calls the applications are trying to lines. In plain english it means it could give you an idea of what it is trying to do.
Look specifically for open() lines (which may open files) and error constants (ENOENT - No such file or directory).
Hope it helps...
jsut becoz u r more aware of it than me, doesnt mean its a stupid question
i dont understand whats so stupid about it.
all i wanted to knw was how do i put a strace on a shared lib
i only running a java program , and my java program calls a function in my shared lib
ITS NOT A STANDALONE C PROGRAM
IF U CANT UNDERSTAND THE QUESTION AND CANT ANSWER IT , DONT CALL THE QUESTION STUPID.
Business Accounts
Answer for Membership
by: AnonymouslemmingPosted on 2005-03-14 at 05:24:52ID: 13534535
The message will depend on the application. Does it provide any logging? Is the client aborting or the server ?