Why do I receive Program received signal SIGABRT, Aborted?


 
Thread Tools Search this Thread
Top Forums Programming Why do I receive Program received signal SIGABRT, Aborted?
# 15  
Old 05-03-2012
Code:
getconf OPEN_MAX
256

will show you how many file one process can have open at one time (don't forget three for stdin, stdout, stderr).

In the example above you have 253 available file slots. In C you can call getdtablesize() (unistd.h) to see what the limit is, it may NOT be OPEN_MAX. It probably is more.
This User Gave Thanks to jim mcnamara For This Post:
# 16  
Old 05-03-2012
Ok thankyou.

---------- Post updated at 05:31 PM ---------- Previous update was at 05:21 PM ----------

Thanks neutronscott. While you still have the program handy could you maybe help me with an overflow problem. When I receive with my two functions create_character, and character_login. Well when I receive data that is longer then recv is receiving It seems to recv again three or four times depending on the amount of characters over the limit there are. I was hoping you could shine some light on this subject so I can try to fix it myself maybe even post some more snippets. I had the idea that if you sent one thousand characters I would only receive 12 and that would be the end of it. Should I FD_CLR and then FD_SET after a receive and if so how to I send a fd_set to a function?
# 17  
Old 05-03-2012
Quote:
Originally Posted by Errigour
Thanks neutronscott. While you still have the program handy could you maybe help me with an overflow problem. When I receive with my two functions create_character, and character_login. Well when I receive data that is longer then recv is receiving It seems to recv again three or four times depending on the amount of characters over the limit there are.
It's like a file. If you read 30 bytes from a 100 byte file, there's still 90 bytes to go. If you don't know how long it is, you have to keep reading until you find the end.

Except it's a file that arrives whenever it feels like it, in chunks of whatever variable size it feels like. If you don't know how long a field's supposed to be, the socket can't tell you. Not dependably, anyway. It might arrive in the size it was sent in -- or the socket might decide to wait and send it all in one big 64K chunk. You can't guess.

Your protocol should include some sort of terminator for variable-length things, since you can't guess from how much you read.
# 18  
Old 05-03-2012
what do you mean terminator? how do you tell recv to only recv 12 bytes and only 12 bytes from a single send regardless of the amount of data they sent? Is it possible to recv in that manor?
# 19  
Old 05-03-2012
I noticed that too. In my trials to learn such things each client had their own buffer and also an int or ptr into where it's at, since you're not guaranteed to get the entire line in 1 read (unless you wrote the client too). I appended into it until a newline. If the clients buffer was full, my read loop would just discard the extra data between buffer size and newline. Then attempt to process it all. Then reset the buffer.

I think all your FD_SET/FD_CLR stuff is OK. In mine, I FD_ZERO at the top of the loop and then FD_SET my listener, and iterated over my linked list and FD_SET those. Yours is more efficient.
# 20  
Old 05-03-2012
Quote:
Originally Posted by Errigour
what do you mean terminator?
Send the string with a \n on the end. So when you see the \n, you know you've received the entire thing. Once you have, just chop off the front of it and put it in your structure, ignoring the rest.

Quote:
how do you tell recv to only recv 12 bytes and only 12 bytes from a single send regardless of the amount of data they sent?
If they send 1000 bytes, you get 1000 bytes.
# 21  
Old 05-03-2012
Yea but i want to receive from mush clients. I haven't planned on making a client for the program so I was hoping you could tell me how to receive only 12 bytes and ignore the rest. If you can't I might just make a linked list buffer. Also you wouldn't happen to know why if I receive data, why when I receive 15 bytes the program decides to recv 12 bytes then one byte at a time would you? Maybe neutronscott could help me with this just cause hes been working with the program. Any light on this subject would be awesome also.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Free() - Program getting aborted.

I am trying to learn C and while trying out some code, the program is getting aborted while I am calling free(). Here is the code: #include <stdlib.h> #include <stdio.h> void print_by_ptr(char **str) { printf("<%s>\n",*str); printf("Now I am modifying the str.\n"); *str =... (3 Replies)
Discussion started by: chacko193
3 Replies

2. Solaris

backup aborted

hi all I am getting following error while taking backup using the command ufsdump 0ubf 512 /dev/rmt/0cbn /database/backup2/rman_backup/level0 >> /database/backup2/backup_tape/level0_rman_06sep12 2>&1; from the log i got the error bash# tail -f level0_rman_06sep12 DUMP: Date of... (3 Replies)
Discussion started by: nikhil kasar
3 Replies

3. Programming

Please help:program hang stuck there signal handling on POSIX Message Queue UNIX C programming

in a single main() function,so need signal handling. Use Posix Message Queue IPC mechanism , can ignore the priority and other linked list message,to implement the scenario: client:Knock Knock server:who's there client: Eric Server:Eric,Welcome. client:exit all process terminated ... (1 Reply)
Discussion started by: ouou
1 Replies

4. Programming

Program received signal: “EXC_BAD_ACCESS”?

I am making a command line program in C using XCode. When running the program, it initially does what it is supposed to do (asks me for a file path). However, when I type in a valid and existing file path, it gives me the following error: Program received signal: “EXC_BAD_ACCESS”.... (6 Replies)
Discussion started by: mdonova33
6 Replies

5. AIX

nim: error signal number 2 received

Hi to all, i am trying to make mksysb backup of a NIM client machine from NIM master and while i am reading that the backup is done successfully i get an error message below and it doesnt exit the smit screen. also the status of the command appears to be running. is there anybody who knows why... (3 Replies)
Discussion started by: omonoiatis9
3 Replies

6. AIX

Received signal #11, SIGSEGV [default] on AIX 6.1

Hello, One of our customer is getting segmentation fault when he runs his shell script which invokes our executable on AIX 6.1. On AIX 5.3, there were no issues. Here is the truss output. 811242: __loadx(0x0A040000, 0xF0D3A26C, 0x00000000, 0x00000009, 0x00000000) = 0xF026E884... (0 Replies)
Discussion started by: erra_krishna
0 Replies

7. Shell Programming and Scripting

Writing a program to receive the GPS data and send to other server

Hi, I would like to write a program to receive the GPS data and then send the data via network to other program. All of the program is not write yet(include host and sender) All of the server OS is unix or linux Could you mind to give me some idea to do this? Thanks so much! Ken ... (2 Replies)
Discussion started by: kenlok
2 Replies

8. Programming

Program received signal SIGSEGV, Segmentation fault.

Dear all, I used debugger from C++ and these are the message I got: Program received signal SIGSEGV, Segmentation fault. 0x00323fc0 in free () from /lib/tls/libc.so.6 (gdb) info s #0 0x00323fc0 in free () from /lib/tls/libc.so.6 #1 0x00794fa1 in operator delete () from... (5 Replies)
Discussion started by: napapanbkk
5 Replies

9. Programming

Program received signal SIGABRT, Aborted.

I ran degugger in C++ and the followings are the message I got: Program received signal SIGABRT, Aborted. 0x002a57a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2 (gdb) info s #0 0x002a57a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2 #1 0x002e97f5 in raise () from /lib/tls/libc.so.6... (1 Reply)
Discussion started by: napapanbkk
1 Replies

10. IP Networking

Tcp Ip Send Receive Server Program

Requirements: A server program should read a file and send the message to the client . if the file is not there, then switch to the receive part of the same program and receive any messages from the socket. If no messages to receive then switch to send part of the program to... (2 Replies)
Discussion started by: Rajeshsu
2 Replies
Login or Register to Ask a Question