Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A portion of my code is as follows:

int fd_file;
....
while(condition)
{
   fd_file = open(path,O_RDONLY);
   if(fd_file == -1)
        perror("Error opening file");
   ....
   printf("\n %d",fd_file);
   close(fd_file);
 }

Withing the while, a file gets opened only once..i.e there is no other open() . The prorm opens a lot of files and after a while I get he error

error opening file:Too many open files

so I checked with the printf statement as seen above and see that I had expected the same file descriptor to be resused but no if in the first run fd_file is 2 then on the next it is 3 even if I had called close()

Why is it so and how do i get rid of this problem?

Thanks

share|improve this question
You're not pasting the real code or you would have noticed the botched if. – cnicutar Jul 13 '11 at 15:40
am coding on a differrent m/c which has no internet connection..have corrected the if...was a typing error – Juggler Jul 13 '11 at 15:44
So you say on the first run fd_file is 2. Which isn't really likely (that's stderr). Are you guessing or remembering stuff ? – cnicutar Jul 13 '11 at 15:46
@cnicular You caught me here..well i did not guess or remember stuff. the problem i post here is geneuine..I know i have made a mistake somewhere and hence i am getting this problem...the file descriptors printer are from 6...i have a few more files opened which explains for the lower open file descriptors and those opens ae outseide the while – Juggler Jul 13 '11 at 16:09
1  
Just to be sure: are you certain that your call to close succeeds? Oh, and don't take down votes personal, but read them as an indication that you should improve your question. – Bart Jul 13 '11 at 17:23
show 2 more comments

closed as not a real question by Ken White, karim79, marc_s, Cody Gray, Mat Jul 16 '11 at 12:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.