Function main returning int?


 
Thread Tools Search this Thread
Top Forums Programming Function main returning int?
# 1  
Old 11-05-2012
Function main returning int?

H friends,
As we know, a function returns a value and that value is saved somwhere. like

Code:
int Sum( int x, int y )
{
return x + y;
}
 
Total = Sum( 10, 20 );

The value 30 is saved in variable Total.

Now the question is, what int value does the function main return, and where is it saved. And can we see the value of the integer returned by main.
Please explain by the help of a small program.

Thank you very much!

Moderator's Comments:
Mod Comment 114 posts and no code tags?!...

Last edited by zaxxon; 11-05-2012 at 03:40 PM.. Reason: code tags
# 2  
Old 11-05-2012
Read the main page on waitpid or wait to get more detail.

The return value of a process to the calling is process is the least significant eight bits of the number returned by main(). Which can be seen as signed or unsigned by the parent. So, the valid results from calling wait on a child returns values from 0 to 255 (looked at as unsigned).

By convention 0 means success, as defined in C by EXIT_SUCCESS.

Since main() is an int function you can return any valid int, but is not very useful to return numbers larger than the range I just defined.

Code:
// retval.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
     int retval=atoi(argv[1]);
     printf("I am returning %d\n", retval);
     return retval;
}

Compile retval then run it with this script
Code:
#!/bin/ksh
cnt=1
while [ $cnt -le 100000000 ]
do
       retval $cnt
       cnt=$((  $cnt * 10 ))
done

And see what happens...
# 3  
Old 11-05-2012
Quote:
Originally Posted by jim mcnamara
Since main() is an int function you can return any valid int, but is not very useful to return numbers larger than the range I just defined.
I think only the first 8 bits of it actually gets returned to the operating system.
# 4  
Old 11-06-2012
Quote:
Originally Posted by gabam
H friends,
As we know, a function returns a value and that value is saved somwhere. like

Code:
int Sum( int x, int y )
{
return x + y;
}
 
Total = Sum( 10, 20 );

The value 30 is saved in variable Total.

Now the question is, what int value does the function main return, and where is it saved. And can we see the value of the integer returned by main.
Please explain by the help of a small program.

Thank you very much!

Moderator's Comments:
Mod Comment 114 posts and no code tags?!...
Hi,

In Unix, the main function can usually return any int value as its status, which is captured by the OS. You can always see the return value of any program by simply doing echo $?

For example,

Code:
int main()
{
return 5;
}

Check it
Code:
echo $?
5

It doesnt make a lot of sense here, but when the code throws exceptions like for example dereferencing an invalid pointer, or invalid airthmetic operation (divide by 0) etc, then the OS terminates the process and the return value would describe the type of error encountered.

For e.g.

Code:
int main(int argc, char **argv)
{
char *p = 0;
*p = '4';
return 5;
}

Result
Code:
[test]$ ./a.out 
Segmentation fault (core dumped)
[test]$ echo $?
139

Hope that helps,
Regards,
Gaurav.
# 5  
Old 11-06-2012
void exit(int status)
pid_t wait(int *stat_loc);

As already mentioned, only the low 8 bits of exit()'s int argument, status, are meaningful. The rest are practically ignored. However, it is an error to assume that the low 8 bits written by wait() to stat_loc are the low 8 of exit()'s status. This is often not the case. Since the layout of wait()'s *stat_loc bitmask is implementation dependent, POSIX specifies macros for examination and retrieval.

The 139 "exit status" in Gaurav's post isn't a true exit status. When a process exits abnormally, the bits which encode exit status have no meaningful value (which is why you are required to consult WIFEXITED() to confirm that the process exited normally before examining the exit status with WEXITSTATUS()).

If it's not an exit status, then what is it? If it wasn't an exit() argument, and if it wasn't main()'s return value, and if it's not provided by the kernel, then where does the 139 come from?

Before checking the exit status of it's child, the shell confirms that it exited normally, with WIFEXITED(). When the confirmation fails, the shell consults WIFSIGNALED(). Determining that the process was signaled and terminated abnormally, the signal number is retrieved with WTERMSIG(). By convention, the shell adds 128 to the signal number and stores that result in its ? parameter.

If your C code wait()ed on a process that was killed by that same signal, in the signal bits examined by WTERMSIG(), it would see 11 and not 139.

To avoid ambiguity, if you plan to invoke your binaries with the shell, it's a good idea to keep to exit values in the range 0 to 125 inclusive. The remaining values are spoken for: 126 (command found but not executable), 127 (command not found), and values larger than 128 (signal number + 128).

(Some of the following may be x86 specific.)

Returning to the original question: Where is the exit status stored? Inside the kernel.

When you call exit(n), the least significant 8 bits of the integer n are written to a cpu register. The kernel system call implementation will then copy it to a process-related data structure.

What if your code doesn't call exit()? The c runtime library responsible for invoking main() will call exit() (or some variant thereof) on your behalf. The return value of main(), which is passed to the c runtime in a register, is used as the argument to the exit() call.

When the parent calls wait(stat_loc), the exit status value (along with other status information) is copied from the kernel process structure to the address pointed to by wait()'s stat_loc.

Once a dead process is wait()'d on and its status information delivered, the kernel can destroy that process' data structure. Until then, the lingering data structure is the hallmark of a zombie.

Regards,
Alister

Last edited by alister; 11-06-2012 at 10:10 PM.. Reason: amend stack statement (register is used)
# 6  
Old 11-06-2012
@corona -

Yes. I think I mentioned the least signficant 8 bits.

I might as well inject the whole sysexits thing here, too:

Man Page for sysexits (freebsd Section 3) - The UNIX and Linux Forums

The idea here is to use predefined exit values for various error conditions.
When you see a unix command return an error code like 64, chances are the exit codes conform to the sysexits model. sysexits is a model, or a suggestion. But it does allow the program to convey intelligence when an error occurs.

For example the diff command (by POSIX standards) has it's own little protocol. It does not use sysexits because in part the information ( or meaning ) associated with two return codes of the three are not errors.
Code:
return value    meaning
0                  differences found
1                  no differences found
2                  some other error occurred

This parallels in part alister's comment about the "range" of return values.

Last edited by jim mcnamara; 11-06-2012 at 09:10 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

A function that refuses to run anywhere else but main()

Hi. I have some code, that for some reason, I could not post it here in this post. Here's the address for it: #if 0 shc Version 4.0.1, Generic Shell Script Compiler GNU GPL Version 3 Md - Pastebin.com First off, I used "shc" to convert the code from shell script to C. And The... (6 Replies)
Discussion started by: ignatius
6 Replies

2. Programming

How to access argv[x] from another function other than main???

Hi friends, when I am passing arguments to main, I want another function to be able to have access to that function, the problem is that I am creating athread, which has a function like void *xyz(void *), how can pass the refernce of argv to this function, if you see my program, you will better... (2 Replies)
Discussion started by: gabam
2 Replies

3. Programming

Handle int listen(int sockfd, int backlog) in TCP

Hi, from the manual listen(2): listen for connections on socket - Linux man page It has a parameter called backlog and it limits the maximum length of queue of pending list. If I set backlog to 128, is it means no more than 128 packets can be handled by server? If I have three... (3 Replies)
Discussion started by: sehang
3 Replies

4. Shell Programming and Scripting

Perl int function solved

Hello, I have the below perl function int to return the integer value from the expression but it is not. I am not sure if something misses out here. Any help on this? Thanks in advance. # Code sample Start my $size = int (`1134 sample_text_here`); print "$size \n"; # Code end ----------... (0 Replies)
Discussion started by: nmattam
0 Replies

5. Shell Programming and Scripting

Awk issue using int function

Hi, I am having issue with awk command . This command is running in the command prompt but inside a shell script. awk -F'| ' 'int($1)==$1 && int($3) ==$3' int_check.txt $cat int_check.txt 123|abc|123x 234|def|345 When i run it inside a shell script i am getting the error "bailing... (5 Replies)
Discussion started by: ashwin3086
5 Replies

6. Shell Programming and Scripting

problem in awk int() function

awk -vwgt=$vWeight -vfac=$vFactor ' BEGIN { printf("wgt:" wgt "\n"); printf("factor:" fac "\n"); total = sprintf("%.0f", wgt * fac); total2 = sprintf("%.0f", int(wgt * fac)); printf("total:" total "\n"); printf("total2:" total2 "\n"); } ' if vWeight=326.4 vFactor=100 the result... (2 Replies)
Discussion started by: qa.bingo
2 Replies

7. Programming

signal handling while in a function other than main

Hi, I have a main loop which calls a sub loop, which finally returns to the main loop itself. The main loop runs when a flag is set. Now, I have a signal handler for SIGINT, which resets the flag and thus stops the main loop. Suppose I send SIGINT while the program is in subloop, I get an error... (1 Reply)
Discussion started by: Theju
1 Replies

8. Programming

main function

Is it possible to execute any function before main() function in C or C++. (6 Replies)
Discussion started by: arun.viswanath
6 Replies

9. Programming

Return value (int) from main to calling shell

What is the sytax to return an int from C program main back to calling shell? #!/usr/bin/ksh typeset -i NO_RECS $NO_RECS=process_file # Process file is a C program that is set up to return an int from main. The #program complies with no issues, but an error is generated when the... (3 Replies)
Discussion started by: flounder
3 Replies

10. Programming

c++ calling main() function

i just finished a project for a c++ class that i wrote at home on my computer, compiled with gcc. when i brought the code into school it would not compile, it would complain that cannot call main() function. at school we use ancient borland c++ from 1995. anyway my program has 20 different... (3 Replies)
Discussion started by: norsk hedensk
3 Replies
Login or Register to Ask a Question