Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
304 views

Why would fclose hang / deadlock? (Windows)

I have a directory change monitor process that reads updates from files within a set of directories. I have another process that performs small writes to a lot of files to those directories (test ...
6
votes
4answers
232 views

What happens if I don't call fclose() in a C program?

Firstly, I'm aware that opening a file with fopen() and not closing it is horribly irresponsible, and bad form. This is just sheer curiosity, so please humour me :) I know that if a C program opens a ...
4
votes
2answers
620 views

Multiple file descriptors to the same file, C

I have a multithreaded application that is opening and reading the same file (not writing). I am opening a different file descriptor for each thread (but they all point to the same file). Each thread ...
3
votes
1answer
1k views

How exactly does fopen(), fclose() work?

I was just wondering about the functions fopen, fclose, socket and closesocket. When calling fopen or opening a socket, what exactly is happening (especially memory wise)? Can opening files/sockets ...
2
votes
2answers
5k views

ipad app exited abnormally with signal 11: Segmentation fault: 11

My app exited abnormally with signal 11. I don't know what that means. There is no crash log and the debugger shows no error. The app is just gone. I got the following log. Apr 27 21:31:31 ...
1
vote
4answers
96 views

What happens to FILE pointer after file is closed?

I wish to know what happens to FILE pointer after the file is closed. Will it be NULL? Basically, I want to check if a file has already been closed before closing a file. For example as follows: ...
1
vote
4answers
69 views

File pointer will not initialize in a separate function (seg fault on fclose)

kk. i need to understand life. when i pass fp, a File pointer, into a new function, and open it there, fclose(fp) causes a seg fault! and i discovered that the file pointer, fp, was never opened. ...
1
vote
4answers
198 views

Does re-use of file pointers cause a memory leak?

It's been several years since I've dealt with C++, so bear with me... I have a memory leak in my program which causes a run-time error. Could this be causing the error? I have a global variable ...
1
vote
1answer
252 views

why does PHP fopen + fwrite double document?

I am running PHP Version 5.3.4 with Apache/2.2.17 on Windows 7 Ultimate 32bit (IIS disabled). I been looking at the fopen modes and am well aware of what mode does what, but i can't wrap my finger ...
1
vote
4answers
90 views

removing a file in c

How do I close a file and remove it? I have the following code: FILE *filePtr = fopen("fileName", "w"); ... Now I want to close filePtr and remove the file "fileName". Should I: fclose(filePtr); ...
1
vote
5answers
937 views

close file with fclose() but file still in use

I've got a problem with deleting/overwriting a file using my program which is also being used(read) by my program. The problem seems to be that because of the fact my program is reading data from the ...
1
vote
1answer
197 views

What can cause fwrite to hang?

My code is hanging fwrite with the following stack: libc.so.6.1::___lll_lock_wait libc.so.6.1::fwrite This seems to be happening in solaris. Only incorrect thing which I can think of is that my ...
1
vote
3answers
401 views

Can fwrite & fclose be called parallely from two threads for the same file descriptor?

What will happen if fwrite & fclose are called in parallel from two threads for the same file descriptor?
1
vote
2answers
314 views

Cannot use fclose on output stream, input stream is fine

Whenever I run my program with fclose(outputFile); at the very end, I get an error. glibc detected...corrupted double-linked list The confusing thing about this though, is that I have ...
1
vote
6answers
2k views

fclose() causing segmentation fault

I have a tab-delimited text file that I am parsing. Its first column contains strings of the format chrX, where X denotes a set of strings, e.g., "1", "2", ..., "X", "Y". These are each stored in a ...
0
votes
1answer
86 views

C - Working with fopen, fclose, fputc etc

I've got this code finally working with a single arguement on my command line, i.e. one file for it to work with, although I designed the code with the concept of it working with an unlimited number ...
0
votes
1answer
66 views

PHP Headers confusion

I've been banging my head against this one all day long. Time to ask for some help. So, I have a PHP script, which is a downloads page. Users have files they can download according to what they have ...
0
votes
3answers
60 views

could not determine size if fclose not done twice

I'm made a File class that is a sort of wrapper of the FILE type and added some methods. This is the code of my file class : #include <Fs/File.h> File::File(Path& p): ...
0
votes
5answers
290 views

why does fclose not set file pointer to NULL?

I was writing a RAII wrapper for FILE *. I noticed that when the FILE * is deleted after close in the destructor it leads to undefined behavior (seg. fault or errors somewhere else). I assumed that ...
0
votes
3answers
143 views

Seg Fault on fopen/fclose

I have a program that is creating multiple files. There is a function for each file being created. Within each function is the exact same code to create the file name, open/create the file for ...
0
votes
2answers
207 views

How do I eliminate duplicates from a CSV file using PHP's fgetcsv?

I am parsing a CSV file using fgetcsv, specifically using $line_of_text. I want to echo all the cities that have a shared country, but I want to eliminate city duplicates so that if, for example, ...
0
votes
2answers
263 views

Program crashes on fclose()

My program crashes on this part of code: if(fclose(_device) != SUCCESS){ cerr << "Output device library error CLOSING FILE\n"; exit(1); } It doesn't print anything, and when ...
0
votes
1answer
229 views

Rewriting some code using fsockopen to use curl instead

My host doesn't allow fsockopen, but it does allow curl. I'm happy using curl from the cli, but haven't had to use it with PHP much. How do I write this using curl instead? $xmlrpcReq and Length are ...
0
votes
3answers
1k views

fclose()/pclose() may block on some file pointers

Calling fclose() here after dup()ing its file descriptor blocks until the child process has ended (presumably because the stream has ended). FILE *f = popen("./output", "r"); int d = dup(fileno(f)); ...
-1
votes
2answers
54 views

Working with Text Files Two

A couple of questions really about the code below from which I gained assistance in a previous post. 1). Any ideas why at the end of the ouput, I get a random garbage character printed? I am freeing ...
-1
votes
1answer
108 views

C, segmentation fault in iofclose.c:52 [closed]

I have defined two macros for openning an closing an output file FILE *f; #define OPEN_LOG f = fopen("my_log.txt", "a+") #define CLOSE_LOG fclose(f) When the output file reaches about 6 MB, ...