2
votes
5answers
142 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
3answers
60 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);
…
2
votes
4answers
31 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
63 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
6answers
142 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 …
0
votes
3answers
185 views
C Memory Allocation: Why there is not enough memory(250K only)
Hi, I am having trouble figuring out the reason why my .c code is having trouble allocating ~250K of memory. Here is the allocation code:
struct IMAGE {
int width, height, max …
4
votes
5answers
140 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 …
3
votes
3answers
182 views
Memory allocation in C
Hi, the following is a very very simple version of malloc() and seems to allocate some space to me, but apart from the fact that there is no free() and I don't check if I've overru …
1
vote
5answers
164 views
c malloc questions (mem corruption)
When using malloc, if it produces a core dump with the error:
malloc(): memory corruption: ....... ***
Does this mean that malloc tried to allocate memory that was not free to a …
0
votes
3answers
119 views
I figured out how to write realloc, but I know the code is not right?
What I decided to do is
call malloc
copy the old block to the new block
free the old block
and return the pointer to the new block
The code below is what I have so far...but …
2
votes
3answers
102 views
ANSI C getc causes segfault on Linux but not OS X
I have some ANSI C code that I developed on my Mac, but when I tried running it on our school's Linux servers I get a segfault.
The specific line that is causing me trouble is a g …
0
votes
5answers
232 views
Write your own malloc function. [closed]
Possible Duplicate:
I want to make my own Malloc
One of my friend was asked this question in a job interview at NVIDIA
Write your own malloc function.
How will you w …
3
votes
5answers
131 views
malloc zeroing out memory?
Given this C code compiled with gcc 4.3.3
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int * i;
i = (int *) malloc(sizeof(int …
1
vote
6answers
188 views
Why do we need to typecast what malloc returns?
int length = strlen(src);
char *structSpace = malloc(sizeof(String) + length + 1);
String *string = (String*) structSpace;
int *string = (int*) structSpace;
* …
1
vote
3answers
75 views
how does jemalloc work? what are the benefits?
Firefox 3 came with a new allocator: jemalloc
I have heard at several places that this new allocator is better. The top Google results don't gave any further information though an …
