2
votes
3answers
97 views
Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?
I need to test code ported from 32bit to 64bit where pointers are cast around as integer handles, and I have to make sure that the correct sized types are used on 64 bit platforms. …
0
votes
6answers
128 views
Opening a file with path in malloc
I'm trying to open a file with fopen, but I don't want a static location so I am getting the string in from the user when he/she runs the program.
However if a user does not enter …
5
votes
5answers
163 views
C: Correctly freeing memory of a multi-dimensional array
Say you have the following ANSI C code that initializes a multi-dimensional array :
int main()
{
int i, m = 5, n = 20;
int **a = malloc(m * sizeof(int *));
//In …
2
votes
3answers
185 views
malloc and free
I am new to C I am trying to get comfortable with malloc + free. I have coded following test but for some reason the memory isn't freed completely (top still indicates about 150MB …
3
votes
3answers
147 views
malloc vs mmap in C
Hi,
I built two programs, one using malloc and other one using mmap. The execution time using mmap is much less than using malloc.
I know for example that when you're using mmap …
2
votes
5answers
119 views
Read a file into dynamic memory array using malloc and POSIX file operations [closed]
Possible Duplicate:
reading a text file into an array in c
Hi,
I'm trying to read a file into a dynamic array.
Firstly I open the file using open() so I get the file desc …
3
votes
2answers
215 views
Why does my program stop crashing if I call malloc instead of GetMem?
I am calling a C DLL from a Delphi 2009 application and I keep getting errors when memory allocated by GetMem or AllocMem is passed to the DLL. The only way around I could avoid th …
0
votes
3answers
73 views
is there a flag “M_FAST” in FreeBSD kernel for Malloc Call ?
if you know there is one, can you let me know what its for ? if not please say so : ) thanks.
Signature : void * malloc(unsigned long size, struct malloc_type type, int flags);
…
4
votes
8answers
209 views
Custom malloc() implementation header design
I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the …
2
votes
4answers
172 views
Is there a way to determine if free() would fail?
Is there a way to determine if free() would fail if ever called on a certain memory block pointer?
I have the following situation: a thread having access to a shared resource fail …
0
votes
5answers
137 views
using malloc for char inputs in C
For an assignment, I have to declare a struct as follows:
struct Food
{
char *name;
int weight, calories;
} lunch[5] = {
{
"apple", 4, 100
},
{
"sa …
4
votes
6answers
152 views
GUI for a GNU Debugger
Hi, am pretty excited with the GNU Debugger and a GUI called Insight as it has saved me A LOT OF time. Thus I am posting this question/answer for other newbies out there like me ha …
2
votes
4answers
51 views
Does exiting from a pthread release malloced memory ?
Let's say I pthread_create and then pthread_detach it. Now, from within the thread function, I malloc some block.
When the thread exits, will the malloc'ed memory be freed automa …
2
votes
2answers
70 views
malloc results in segmentation fault after mprotect
I'm getting a segmentation fault the first time I call malloc() after I protect a memory region with mprotect(). This is a code sniplet that does the memory allocation the the prot …
4
votes
5answers
150 views
What happens if I try to access memory beyond a malloc()’d region?
I've allocated a chuck of memory with char* memoryChunk = malloc ( 80* sizeof(char) + 1); What is keeping me from writing into the memory location beyond 81 units? What can I do to …
