active questions tagged malloc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T00:55:02Zhttp://stackoverflow.com/feeds/tag/mallochttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914633/bring-malloc-back-to-its-initial-state2bring malloc() back to its initial statesylvainulg2009-12-16T13:22:30Z2009-12-16T15:38:37Z
<p>Do you know if there is a way to bring back malloc in its initial state, as if the program was just starting ?</p>
<p>reason : I am developing an embedded application with the nintendods devkitpro and I would like to be able to improve debugging support in case of software faults. I can already catch most errors and e.g. return to the console menu, but this fails to work when catching std::bad_alloc.</p>
<p>I suspect that the code I use for "soft reboot" involves malloc() itself at some point I cannot control, so I'd like to "forget everything about the running app and get a fresh start".</p>
http://stackoverflow.com/questions/1898823/unit-testing-c-library-memory-management0Unit testing C library, memory management.Nicolas Goy2009-12-14T03:56:50Z2009-12-14T04:11:12Z
<p>I am working on a quite large C library that doesn't have any tests now. As the API starts to be final, I'd like to start writing unit tests.</p>
<p>Nearly all my functions acts on the first parameter (a structure).</p>
<p>The naive approach to unit test is to have the pre function call structure in a known state, call the function, and then compare the pre call structure with the expected result.</p>
<p>Now this works with structure composed of scalar types, but as for allocated memory, I was wondering what kind of approach you were using.</p>
<p>For example, imagine an image structure, when you do:</p>
<pre><code>CreateImage(&img, x, y);
</code></pre>
<p>you expect the img->x to be x, img->y to be y and img->pixels to be a pointer to something big enough to hold <code>x * y * sizeof(pixel)</code>.</p>
<p>Checking for the first two is trivial, but what about the img->pixels? I don't mean to check if the malloc call was successful, as I can [overload] malloc, but I want to know if malloc was called properly.</p>
<p>This is especially important in case like that:</p>
<pre><code>CreateImage(*img, x, y)
{
img->x = x; img->y = y;
/* do something, dhoo, that something is broken and modify x or y */
img->pixels = malloc(x * y * sizeof(pixel)); /* wrong allocation size */
if(!img->pixels) error("no memory");
}
</code></pre>
<p>I hope my question is clear.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/269659/using-malloc-hooks2Using Malloc HooksDan Snyder2008-11-06T18:03:02Z2009-12-13T07:01:13Z
<p>I am trying to use a malloc hook to create a custom function my_malloc(). In my main program when I call malloc() I want it to call my_malloc() can someone please give me an example on how to do this in C</p>
http://stackoverflow.com/questions/1892092/double-free-error-with-pointer-to-array-of-mpzt0double free error with pointer to array of mpz_tteflon192009-12-12T02:49:34Z2009-12-12T03:06:52Z
<p>Hi,</p>
<p>I'm currently learning libgmp and to that end I'm writing a small program which find prime factors. My program calls a function which fills an array with a varying amount of mpz_t integers, prime factors of a given number, which I need to return. I'm planning on setting the last element to NULL, so I know how many mpz_t integers the function found.</p>
<p>My problem is I'm getting double free errors with my array of pointers to mpz_t integers. I've written up some sample code illustrating my problem:</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#include <gmp.h>
int main(void)
{
mpz_t *p = malloc(5*sizeof(mpz_t*));
mpz_init_set_ui(p[0], 2UL);
mpz_init_set_ui(p[1], 5UL);
gmp_printf("%Zd %Zd\n", p[0], p[1]);
mpz_clear(p[0]);
mpz_clear(p[1]);
free(p);
return 0;
}
</code></pre>
<p>2 and 5 are printed to stdout, so allocation seems to be fine. But I'm getting the double free error below:</p>
<pre><code>2 5
*** glibc detected *** ./lol: double free or corruption (out): 0x08e20020 ***
======= Backtrace: =========
/lib/libc.so.6(+0x6b6c1)[0xb77126c1]
/lib/libc.so.6(+0x6cf18)[0xb7713f18]
/lib/libc.so.6(cfree+0x6d)[0xb7716f8d]
/usr/lib/libgmp.so.3(__gmp_default_free+0x1d)[0xb77f53fd]
/usr/lib/libgmp.so.3(__gmpz_clear+0x2c)[0xb77ff08c]
./lol[0x80485e3]
/lib/libc.so.6(__libc_start_main+0xe6)[0xb76bdb86]
./lol[0x80484e1]
</code></pre>
<p>I'm still getting totally used to pointers, and gcc gives no errors, however I'm fairly sure this is wrong and I should be doing something like</p>
<pre><code>mpz_init_set_ui(*p[0], 2UL);
</code></pre>
<p>instead of:</p>
<pre><code>mpz_init_set_ui(p[0], 2UL);
</code></pre>
<p>But that gives me a compiler error</p>
<pre><code>test.c:8: error: incompatible type for argument 1 of ‘__gmpz_init_set_ui’
/usr/include/gmp.h:925: note: expected ‘mpz_ptr’ but argument is of type ‘__mpz_struct’
</code></pre>
<p>Anyway, my questions are:</p>
<ol>
<li>I'm sure I should be dereferencing the pointer in the mpz_init_set_ui() call, why is that wrong?</li>
<li>Is there a better way of doing this? Should I use a linked list?(I've not learned linked lists yet, I figure an array is best for this but if I'm really making things way more difficult, tell me)
3.Would it be better to create a struct with a pointer to my array and another variable with the amount of elements in my array and return a pointer to that instead?</li>
</ol>
<p>The platform is linux 32-bit just in case that's relevant.</p>
<p>Here is the code I have just now, which I want to modify, I declare the array of mpz_t on the stack. But I want to make main() a function:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include "prime.h"
#define MAXFACTORS 100
int main(void)
{
mpz_t numToFactor, factor;
mpz_t result;/* used to pass return values from getPrimeFactor() */
mpz_t primeFactors[MAXFACTORS];
mpz_init_set_str(numToFactor, "18 446 744 073 709 551 615 436 457 568", 10);
mpz_init(factor);
mpz_init(result);
int pFLen = 0;
mpz_init(primeFactors[pFLen]);
getPrimeFactor(numToFactor, result);
mpz_set(factor, result);
while(mpz_cmp_ui(factor, 0UL))
{
mpz_set(primeFactors[pFLen], factor);
pFLen++;
if(pFLen == MAXFACTORS)
{
puts("Ran out of space to store prime factors, quitting...");
}
mpz_init(primeFactors[pFLen]);
mpz_divexact(factor, numToFactor, factor);
mpz_set(numToFactor, factor);
getPrimeFactor(factor, result);
mpz_set(factor, result);
}
mpz_set(primeFactors[pFLen], numToFactor);
pFLen++;
int i;
for(i = 0; i < pFLen; i++)
{
gmp_printf("%Zd ", primeFactors[i]);
}
puts("");
mpz_clear(numToFactor);
mpz_clear(factor);
return 0;
}
</code></pre>
<p>Thanks in advance people,</p>
http://stackoverflow.com/questions/1891864/effect-of-filling-memory-allocated-by-malloc0Effect of filling memory allocated by malloc()out_sider2009-12-12T01:17:38Z2009-12-12T02:09:27Z
<p>Although I was able to correct my program and make it run properly, the reason why it wasn't working left me really curious.</p>
<p>I made a string with malloc and initialized it...then I did several strcat with it...and then I declares a file pointer...after that and if my string had more than approx. 26 chars the rest would be garbage...but if i declared the pointer previously to the string malloc it worked great. I just can't understand why, here it is some of the code if anyone thinks it's better to see more pls say so:</p>
<p>code:</p>
<pre><code>char* holder=(char*)malloc(sizeof(char)*100);
for(i=0;i<100;i++)
*(holder+i)='\0';
strcat(holder,"set xtics (");
//will ignore until the last n lines
for(i=0;i<26-n;i++)
readline(sfd,line,29);
//will manage the last lines
char n_column[2];
char freq[3]={0};
for(i;i<26;i++)
{
readline(sfd,line,29);
sscanf(line+4,"%s",freq);
write(out,freq,strlen(freq));
write(out,"\n",1);
strcat(holder,"'");
sscanf(line,"%s",temp);
strcat(holder,temp);
strcat(holder,"'");
sprintf(n_column,"%d",counter);
strcat(holder," ");
strcat(holder,n_column);
//for the las one which won't have the ,
if(i==25)
strcat(holder,")");
else
strcat(holder,", ");
counter++;
}
//sending to gnuplot using pipe
printf("Before: %s\n",holder);
FILE *pipe = popen("gnuplot -persist","w"); //why can't it be here!!!!
printf("After: %s\n",holder);
</code></pre>
<p>output:</p>
<p>Before: set xtics ('a' 0, 'b' 1, 'c' 2, 'd' 3, 'e' 4, 'f' 5, 'g' 6, 'j' 7, 'k' 8, 'l' 9, 'm' 10, 'n' 11, 'o' 12, 'p' 13, 'q' 14, 'r' 15, 'u' 16, 'v' 17, 'w' 18, 'x' 19, 'y' 20, 'z' 21, 'h' 22, 'i' 23, 't' 24, 's' 25)</p>
<p>After: set xtics ('a' 0, 'b' 1, 'c' 2, 'd' 3, 'e' 4, 'f' 5, 'g' 6, 'j' 7, 'k' 8, 'l' 9, 'm' 10, 'n' 11, 'o'�</p>
<p>But if I change to:</p>
<p>FILE *pipe = popen("gnuplot -persist","w"); </p>
<pre><code>char* holder=(char*)malloc(sizeof(char)*100);
for(i=0;i<100;i++)
*(holder+i)='\0';
</code></pre>
<p>Output is fine.</p>
<p>So why declaring the file pointer made such a difference? Or is something besides that?</p>
<p>Many thanks for you patience.</p>
http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free10Setting variable to NULL after free ...Alphaneo2009-06-22T05:35:16Z2009-12-10T08:11:12Z
<p>In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ...</p>
<pre><code>void some_func ()
{
int *nPtr;
nPtr = malloc (100);
free (nPtr);
nPtr = NULL;
return;
}
</code></pre>
<p>I feel that, in cases like the code shown above, setting to NULL does not have any meaning. Or am I missing something?</p>
<p>If there is no meaning in such cases, I am going to take it up with the "quality team" to remove this coding rule. Please advice.</p>
http://stackoverflow.com/questions/1868719/sigsegv-seemingly-caused-by-printf0SIGSEGV, (seemingly) caused by printfGlen2009-12-08T17:56:48Z2009-12-09T01:35:11Z
<p>First and foremost, apologies for any cross-posting. Hope I'm not repeating an issue here, but I was unable to find this elsewhere (via Google and Stack Overflow).</p>
<p>Here's the gist of the error. If I call <code>printf</code>, <code>sprintf</code> or <code>fprintf</code> anywhere within my code, to display a float, I get a <code>SIGSEGV (EXC_BAD_ACCESS)</code> error. Let me give an example.</p>
<p>The following throws the error:</p>
<pre><code>float f = 0.5f;
printf("%f\n",f);
</code></pre>
<p>This code does not:</p>
<pre><code>float f = 0.5f;
printf("%d\n",f);
</code></pre>
<p>I realize there's an implicit conversion there, but I'm not concerned with that. I just can't fathom why printing a float vs. printing an integer would throw an error.</p>
<p><strong>Note:</strong> Part of the code uses <code>malloc</code> to create some very large multidimensional arrays. However, these arrays are <strong>not</strong> being referenced in any way for these print statements. Here's an example how I'm declaring these arrays.</p>
<pre><code>#define X_LEN 20
#define XDOT_LEN 20
#define THETA_LEN 20
#define THETADOT_LEN 20
#define NUM_STATES (X_LEN+1) * (XDOT_LEN+1) * (THETA_LEN+1) * (THETADOT_LEN+1)
#define NUM_ACTS 100
float *states = (float *)malloc(NUM_STATES * sizeof(float));
// as opposed to float states[NUM_STATES] (more memory effecient)
float **q = (float**)malloc(NUM_STATES * sizeof(float*));
for(int i=0; i < NUM_STATES; i++) {
float *a = (float*)malloc(NUM_ACTS * sizeof(float));
for(int j=0; j < NUM_ACTS; j++) {
a[j] = 0.0f;
}
q[i] = a;
}
</code></pre>
<p>And then the above <code>printf</code> statements occur later in the code. </p>
<p>The reason I included the <code>malloc</code> stuff is because from what I understand, <code>SIGSEGV</code> is related to poorly formed <code>malloc</code> calls. So, if the array initializations are what's causing the problem, I would like to know:</p>
<ul>
<li>why?</li>
<li>how can I change the <code>malloc</code> code to solve this problem?</li>
</ul>
<p>I've included the crash log generated by OS X, just in case that helps anybody out.</p>
<pre>Process: pole [5453]
Path: {REDACTED}
Identifier: pole
Version: ??? (???)
Code Type: X86-64 (Native)
Parent Process: bash [5441]
Date/Time: 2009-12-08 11:38:38.358 -0600
OS Version: Mac OS X 10.6.2 (10C540)
Report Version: 6
Interval Since Last Report: 130074 sec
Crashes Since Last Report: 68
Per-App Crashes Since Last Report: 63
Anonymous UUID: CA20CF15-8C46-4C85-A793-6C69F9F40140
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000100074f3b
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 libSystem.B.dylib 0x00007fff828d489e __Balloc_D2A + 164
1 libSystem.B.dylib 0x00007fff828d49b8 __d2b_D2A + 45
2 libSystem.B.dylib 0x00007fff828e8c74 __dtoa + 320
3 libSystem.B.dylib 0x00007fff828aa960 __vfprintf + 4980
4 libSystem.B.dylib 0x00007fff828ec7db vfprintf_l + 111
5 libSystem.B.dylib 0x00007fff828ec75e fprintf + 196
6 pole 0x00000001000028b5 Balance::sarsa() + 187
7 pole 0x0000000100002e54 main + 49
8 pole 0x00000001000010a8 start + 52
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000001 rbx: 0x000000010042cca0 rcx: 0x000000010042cca8 rdx: 0x0000000100074f3b
rdi: 0x000000000000000e rsi: 0x00007fff5fbfecbc rbp: 0x00007fff5fbfeba0 rsp: 0x00007fff5fbfeb90
r8: 0x00007fff5fbff0b0 r9: 0x0000000000000000 r10: 0x00000000ffffffff r11: 0x000000010083a40b
r12: 0x0000000000000001 r13: 0x00007fff5fbfecb8 r14: 0x00007fff5fbfecbc r15: 0x000000010000363e
rip: 0x00007fff828d489e rfl: 0x0000000000010202 cr2: 0x0000000100074f3b
Binary Images:
0x100000000 - 0x100003fff +pole ??? (???) {REDACTED}
0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) /usr/lib/dyld
0x7fff81697000 - 0x7fff8169bff7 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
0x7fff8289c000 - 0x7fff82a5aff7 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
0x7fff83c4c000 - 0x7fff83cc9fef libstdc++.6.dylib ??? (???) /usr/lib/libstdc++.6.dylib
0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.27f2
Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.91.19)
Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: Hitachi HTS542520K9SA00, 186.31 GB
Parallel ATA Device: MATSHITADVD-R UJ-867
USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0230, 0x5d200000
USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x820f, 0x1a110000</pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1344126/memory-allocation-and-deallocation-across-dll-boundaries3Memory allocation and deallocation across dll boundariesAlan2009-08-27T22:40:47Z2009-12-07T19:39:21Z
<p>I understand that memory allocations made in one dll then subsequently free'd in another can cause all sort of problems, especially regarding the CRT. These sorts of problems are especially problematic when it comes to exporting STL containers. We've experienced these sorts of problems before (when writing custom Adobe plugins that linked with our libraries) and we've worked round these issues by defining our own allocator that we use in all our containers, eg:</p>
<pre><code>typedef std::vector < SessionFields,
OurAllocator < SessionFields > >
VectorSessionFields;
typedef std::set < SessionFields,
std::less < SessionFields >,
OurAllocator < SessionFields > >
SetSessionFields;
</code></pre>
<p>This has worked well when passing types to/from our code, however we've hit a problem in that we're now having to call a function in Adobe's SDK that returns a populated vector which causes a crash when it goes out of scope.</p>
<p>Obviously, it's a problem with memory being allocated in Adobe's SDK belonging to a different heap when it's finally free'd in my code. So I'm thinking that maybe I could do something clever like somehow overriding or exporting the allocator used in their SDK so I could use it to clean up containers returned from their functions.</p>
<p>I'm also looking at writing a wrapper or some sort of thunking layer whereby STL containers would be safely marshalled between my code and the SDK (<em>although this does sound very messy</em>).</p>
<p>Alternatively, I'm also looking at using <code>GetProcessHeaps</code> to identify the heap used from within the SDK, and try to free against this heap, instead of the default heap.</p>
<p>Has anyone any advice on how we can solve this problem?</p>
http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc3Is it a better practice to typecast the pointer returned by malloc?crypto2009-12-02T19:19:27Z2009-12-03T13:07:47Z
<p>For the C code below, compare the defintions of the int pointers a and b; </p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
int main()
{
int *a=malloc(sizeof(int));
int *b=(int *)malloc(sizeof(int));
return(0);
}
</code></pre>
<p>Is it better in any way to typecast the pointer of type void, returned by the malloc function?
Or is it auto-typecasted while assigning to the int pointer on the left hand side?
Under which circumstances, if any, can it prove to be necessary rather than just obligatory? </p>
<p>Please clarify whether implicit type casting, where type of right hand side is converted to type of the left hand side, applies here.</p>
http://stackoverflow.com/questions/1817278/malloc-a-pointer-to-a-pointer-to-a-structure-array-by-reference4Malloc a pointer to a pointer to a structure array by referenceZPS2009-11-30T00:22:52Z2009-11-30T04:02:39Z
<p>The code below compiles, but immediately crashes for reasons obvious to others, but not to me. I can't seem to get it right, can anyone tell me how to fix this.</p>
<pre><code>*array_ref[2] = array[0];
*array_ref[3] = array[1];
</code></pre>
<p>It crashes on that part everytime.</p>
<pre><code>typedef struct test {
char *name;
char *last_name;
} person;
int setName(person ** array, person ***array_ref) {
*array = malloc (5 * sizeof(person));
*array_ref= malloc(5 * sizeof(person*));
array[0]->name = strdup("Bob");
array[1]->name = strdup("Joseph");
array[0]->last_name = strdup("Robert");
array[1]->last_name = strdup("Clark");
*array_ref[2] = array[0];
*array_ref[3] = array[1];
return 1;
}
int main()
{
person *array;
person **array_r;
setName(&array,&array_r);
printf("First name is %s %s\n", array[0].name, array[0].last_name);
printf("Second name is %s %s\n", array_r[3]->name, array_r[3]->last_name);
while(1) {}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1777772/core-data-malloc-errors0Core Data Malloc ErrorsMichael Waterfall2009-11-22T03:58:33Z2009-11-28T20:00:55Z
<p>Hi there,</p>
<p>I've noticed I'm getting a few errors at random points in my app. I've had 2 errors, "double free" and "incorrect checksum for freed object". Heres the stack trace of a "double free" error. Can anyone provide any insight? It's happening on a call in my code that just sets an attribute to an <code>NSNumber</code> so I can't understand why it's doing it!</p>
<pre><code>myObject.numberAttr = [NSNumber numberWithInt:[dateComponents day]];
</code></pre>
<p><strong>Randomly Triggered (Doesn't always happen):</strong></p>
<pre><code>#0 0x9585b072 in malloc_error_break
#1 0x9585c218 in szone_error
#2 0x9585c34d in free_tiny_botch
#3 0x01c5e064 in _PFDeallocateObject
#4 0x01c97e2b in -[NSManagedObject(_NSInternalMethods) _setLastSnapshot__:]
#5 0x01c97a0d in -[NSManagedObjectContext(_NSInternalChangeProcessing) _establishEventSnapshotsForObject:]
#6 0x01c97866 in _PFFastMOCObjectWillChange
#7 0x01c976c5 in _PF_ManagedObject_WillChangeValueForKeyIndex
#8 0x01c97525 in _sharedIMPL_setvfk_core
#9 0x01c9b827 in _svfk_5
</code></pre>
<p>Many thanks,</p>
<p>Michael</p>
http://stackoverflow.com/questions/1788655/when-to-use-malloc-for-char-pointers2When to use malloc for char pointersZPS2009-11-24T08:28:41Z2009-11-24T10:06:04Z
<p>I'm specifically focused on when to use malloc on char pointers</p>
<pre><code>char *ptr;
ptr = "something";
...code...
...code...
ptr = "something else";
</code></pre>
<p>Would a malloc be in order for something as trivial as this? If yes, why? If not, then when is it necessary for char pointers?</p>
http://stackoverflow.com/questions/1772672/are-there-compiler-flags-to-get-malloc-to-return-pointers-above-the-4g-limit-for2Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?Snazzer2009-11-20T19:18:01Z2009-11-22T01:43:16Z
<p>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.</p>
<p>Are there any flags for various compilers, or even flags at runtime which will ensure that <code>malloc</code> returns pointer values greater than the 32bit limit?</p>
<p>Platforms I'm interested in:</p>
<ol>
<li>Visual Studio 2008 on Windows XP 64, and other 64 bit windows</li>
<li>AIX using xLC</li>
<li>64bit gcc</li>
<li>64bit HP/UX using aCC</li>
</ol>
<p><hr></p>
<p><strong>Sample Application that allocates 4GB</strong></p>
<p>So thanks to R Samuel Klatchko's answer, I was able to implement a simple test app that will attempt to allocate pages in the first 4GB of address space. Hopefully this is useful to others, and other SO users can give me an idea how portable/effective it is.</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#define UINT_32_MAX 0xFFFFFFFF
#ifdef WIN32
typedef unsigned __int64 Tuint64;
#include <windows.h>
#else
typedef unsigned long long Tuint64;
#include <sys/mman.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#endif
static void* Allocate(void* pSuggested, unsigned int PageSize)
{
#ifdef WIN32
void* pAllocated = ::VirtualAlloc(pSuggested, PageSize, MEM_RESERVE ,PAGE_NOACCESS);
if (pAllocated)
{
return pAllocated;
}
return (void*)-1;
#else
void* pAllocated = ::mmap(pSuggested,
PageSize,
PROT_NONE,
MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE,
-1,
0);
if (pAllocated == MAP_FAILED)
{
pAllocated = (void*)-1;
}
return pAllocated;
#endif
}
static void Deallocate(void* pRegion, unsigned int PageSize)
{
#ifdef WIN32
::VirtualFree(pRegion,0,MEM_RELEASE);
#else
::munmap(pRegion,PageSize);
#endif
}
static void Gobble32bitAddressSpace()
{
#ifdef WIN32
SYSTEM_INFO SysInfo;
::GetSystemInfo(&SysInfo);
unsigned int PageSize = SysInfo.dwAllocationGranularity;
#else
unsigned int PageSize = ::sysconf(_SC_PAGE_SIZE);
#endif
unsigned int AllocatedPages = 0;
unsigned int SkippedPages = 0;
void *pStart = 0;
while( ((Tuint64)pStart) < UINT_32_MAX)
{
void* pAllocated = Allocate(pStart, PageSize);
if (pAllocated != (void*)-1)
{
if (pAllocated == pStart)
{
//Allocated at expected location
AllocatedPages++;
}
else
{
//Allocated at a different location
//unallocate and consider this page unreserved
SkippedPages++;
Deallocate(pAllocated,PageSize);
}
}
else
{
//could not allocate at all
SkippedPages++;
}
pStart = (char*)pStart + PageSize;
}
printf("PageSize : %u\n",PageSize);
printf("Allocated Pages : %u (%u bytes)\n",AllocatedPages,PageSize*AllocatedPages);
printf("Skipped Pages : %u (%u bytes)\n",SkippedPages,SkippedPages*PageSize);
}
int main()
{
Gobble32bitAddressSpace();
//Try to call malloc now and see if we get an
//address above 4GB
void* pFirstMalloc = ::malloc(1024);
if (((Tuint64)pFirstMalloc) >= UINT_32_MAX)
{
printf("OK\n");
}
else
{
printf("FAIL\n");
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1766790/opening-a-file-with-path-in-malloc0Opening a file with path in mallocBotto2009-11-19T21:45:48Z2009-11-19T22:34:49Z
<p>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 one a default file is specified.</p>
<p>Can I just put the malloc var in to the fopen path parameter?</p>
<pre><code>char *file_path_mem = malloc(sizeof(char));
if (file_path_mem != NULL) //Null if out of memory
{
printf("Enter path to file, if in current directory then specify name\n");
printf("File(default: marks.txt): ");
while ((c = (char)getchar()) != '\n')
{
file_path_mem[i++] = c;
file_path_mem = realloc(file_path_mem, i+1 * sizeof(char));
}
file_path_mem[i] = '\0';
if (i == 0 && c == '\n')
{
file_path_mem = realloc(file_path_mem, 10 * sizeof(char);
file_path_mem = "marks.txt";
}
}
else
{
printf("Error: Your system is out of memory, please correct this");
return 0;
}
if (i==0)
{
FILE *marks_file = fopen("marks.txt", "r");
}
else
{
FILE *marks_file = fopen(file_path_mem, "r");
}
free(file_path_mem);
</code></pre>
<p>As you might have guess I am a c novice so if I have done something horrible wrong, then sorry.</p>
http://stackoverflow.com/questions/1684821/is-there-a-flag-mfast-in-freebsd-kernel-for-malloc-call0is there a flag "M_FAST" in FreeBSD kernel for Malloc Call ?KaluSingh Gabbar2009-11-06T01:25:19Z2009-11-18T21:25:16Z
<p>if you know there is one, can you let me know what its for ? if not please say so : ) thanks.</p>
<p>Signature : <strong>void * malloc(unsigned long size, struct malloc_type <em>type, int flags);</em></strong></p>
<p>for example. other flags are...</p>
<pre><code> M_ZERO
Causes the allocated memory to be set to all zeros.
M_WAITOK
Indicates that it is OK to wait for resources. If the request
cannot be immediately fulfilled, the current process is put to
sleep to wait for resources to be released by other processes.
The malloc(), realloc(), and reallocf() functions cannot return
NULL if M_WAITOK is specified.**
</code></pre>
<p>This is the root of my confusion</p>
<p><strong>EDIT</strong>:</p>
<p>The clarification for M_FAST is made in my answer below.</p>
http://stackoverflow.com/questions/1739296/malloc-vs-mmap-in-c3malloc vs mmap in CPeter2009-11-15T23:35:40Z2009-11-15T23:49:21Z
<p>Hi, </p>
<p>I built two programs, one using <code>malloc</code> and other one using <code>mmap</code>. The execution time using <code>mmap</code> is much less than using <code>malloc</code>.</p>
<p>I know for example that when you're using <code>mmap</code> you avoid read/writes calls to the system. And the memory access are less.</p>
<p>But are there any other reasons for the advantages when using <code>mmap</code> over <code>malloc</code>?</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1735640/malloc-and-free2malloc and freeKalaz2009-11-14T21:19:27Z2009-11-14T22:03:31Z
<p>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 of memory allocated to process). Why is that?</p>
<pre><code>#include <stdio.h>
#include <malloc.h>
typedef struct {
char *inner;
} structure;
int main()
{
int i;
structure** structureArray;
structureArray = (structure**)malloc(sizeof(structure*)*1000*10000);
for (i = 0; i < 1000*10000;i++)
{
structureArray[i] = (structure*) malloc(sizeof(structure));
structureArray[i]->inner = (char*) malloc(sizeof(char)*1000*1000*1000);
}
printf("freeing memory");
for (i = 0; i < 1000*10000;i++)
{
free(structureArray[i]->inner);
free(structureArray[i]);
}
free(structureArray);
system("sleep 100");
return 0;
}
</code></pre>
<p>coresponding Makefile:</p>
<pre><code>all: test.c
gcc -o test test.c
./test &
top -p `pidof ./test`
killall ./test
</code></pre>
http://stackoverflow.com/questions/292109/outputting-to-stderr-whenever-malloc-free-is-called2Outputting to stderr whenever malloc/free is calledtwk2008-11-15T03:38:16Z2009-11-14T20:48:11Z
<p>With Linux/GCC/C++, I'd like to record something to stderr whenever malloc/free/new/delete are called. I'm trying to understand a library's memory allocations, and so I'd like to generate this output while I'm running unit tests. I use valgrind for mem leak detection, but I can't find an option to make it just log allocations. </p>
<p>Any ideas? I'm looking for the simplest possible solution. Recompiling the library is not an option. </p>
http://stackoverflow.com/questions/147298/multithreaded-memory-allocators-for-c-c9Multithreaded Memory Allocators for C/C++Robert Gould2008-09-29T02:13:02Z2009-11-14T19:46:27Z
<p>Hi I currently have heavily multithreaded server application, and I'm shopping around for a good multithreaded memory allocator.</p>
<p>So far I'm torn between:</p>
<p>-Sun's umem</p>
<p>-Google's tcmalloc</p>
<p>-Intel's threading building blocks allocator</p>
<p>-Emery Berger's hoard</p>
<p>From what I've found hoard might be the fastest, but I hadn't heard of it before today, so I'm skeptical if its really as good as it seems. Anyone have personal experience trying out these allocators?</p>
http://stackoverflow.com/questions/1734663/read-a-file-into-dynamic-memory-array-using-malloc-and-posix-file-operations2Read a file into dynamic memory array using malloc and POSIX file operations [closed]Peter2009-11-14T16:04:42Z2009-11-14T17:47:03Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/410943/reading-a-text-file-into-an-array-in-c">reading a text file into an array in c</a> </p>
</blockquote>
<p>Hi,</p>
<p>I'm trying to read a file into a dynamic array.
Firstly I open the file using open() so I get the file descriptor
But then I don't know how can I allocate the memory using malloc to a dynamic array in order to do some data modification in the file from memory.</p>
<p>Thanks for the help</p>
http://stackoverflow.com/questions/1733881/c-correctly-freeing-memory-of-a-multi-dimensional-array5C: Correctly freeing memory of a multi-dimensional arrayAndreas Grech2009-11-14T10:15:30Z2009-11-14T13:20:28Z
<p>Say you have the following ANSI C code that initializes a multi-dimensional array :</p>
<pre><code>int main()
{
int i, m = 5, n = 20;
int **a = malloc(m * sizeof(int *));
//Initialize the arrays
for (i = 0; i < m; i++) {
a[i]=malloc(n * sizeof(int));
}
//...do something with arrays
//How do I free the **a ?
return 0;
}
</code></pre>
<p>After using the <code>**a</code>, how do I correctly free it from memory ?</p>
<p><hr></p>
<p><strong>[Update]</strong> (Solution)</p>
<p>Thanks to Tim's (and the others) <a href="http://stackoverflow.com/questions/1733881/c-correctly-freeing-memory-of-a-multi-dimensional-array/1733945#1733945">answer</a>, I can now do such a function to free up memory from my multi-dimensional array : </p>
<pre><code>void freeArray(int **a, int m) {
int i;
for (i = 0; i < m; ++i) {
free(a[i]);
}
free(a);
}
</code></pre>
http://stackoverflow.com/questions/1708839/why-does-my-program-stop-crashing-if-i-call-malloc-instead-of-getmem3Why does my program stop crashing if I call malloc instead of GetMem?kdilley2009-11-10T15:34:50Z2009-11-11T00:57:14Z
<p>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 these errors was by using malloc from msvcrt.dll. What is malloc doing that the built-in memory routines aren't, and how can I get the built-in ones to work? I really don't like bypassing the built-in memory manager.</p>
http://stackoverflow.com/questions/1706229/using-malloc-for-char-inputs-in-c0using malloc for char inputs in CJet2009-11-10T07:43:34Z2009-11-10T22:29:04Z
<p>For an assignment, I have to declare a struct as follows: </p>
<pre><code>struct Food
{
char *name;
int weight, calories;
} lunch[5] = {
{
"apple", 4, 100
},
{
"salad", 2, 80
}
};
</code></pre>
<p>In my main, I am trying to ask the user for the rest of the inputs to fill the struct to print them out. I figure I would try to use malloc. Would I do something like this?</p>
<pre><code>int main(void)
{
char *str1;
printf("Please enter a food, weight, and calories of the food: ");
scanf("%s", (char *)malloc(str1));
return(EXIT_SUCCESS);
}
</code></pre>
http://stackoverflow.com/questions/1700905/custom-malloc-implementation-header-design4Custom malloc() implementation header designBumbleBee2009-11-09T13:11:45Z2009-11-10T05:37:22Z
<p>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 First Fit Algorithm. I've shown below the structure I would like to create in an "Empty Memory Node".</p>
<p>How do I write the header block (a union to be specific) at the first few bytes of the memory, I obtain (I am using malloc() to initially get a chunk of memory) so that the remaining bytes are free?</p>
<p>This is the union I am using:</p>
<pre><code>/*Define Header Structure for proper alignment*/
union header {
struct{
union header* next;
unsigned size ; /*Make it size_t*/
}s;
double dummy_align_var;
};
-------------------------------------------------------------------------------
|Next |Size of |16Byte| User is concerned only about |16Byte| |
|Free Memory |Allocated|Header| this portion of memory |Footer|Checksum |
|Address |Block |Picket| and has no knowledge of rest |Picket| |
-------------------------------------------------------------------------------
|-------Header---------| ^Address Returned to user
^------User Requested Size-----^
^-------------Memory Obtained From The Operating System-----------------------^
*/
</code></pre>
<p>[EDIT]
Changed block structure according to suggestions provided.</p>
http://stackoverflow.com/questions/1693315/is-there-a-way-to-determine-if-free-would-fail1Is there a way to determine if free() would fail?jldupont2009-11-07T14:59:08Z2009-11-09T14:10:56Z
<p>Is there a way to determine if <code>free()</code> would fail if ever called on a certain memory block pointer?</p>
<p>I have the following situation: a thread having access to a shared resource fails <strong>whilst</strong> it <strong>may</strong> have been in the state of freeing the said resource. Now I need to devise a safe way to clean-up this shared resource.</p>
<p>Of course I have assigned ownership of the resource for the <strong>normal</strong> case but what about the aforementioned limit case?</p>
<p><strong>UPDATED:</strong> If I use additional synchronizing mechanisms it only makes more cleaning up to do and <strong>might</strong> involved additional limit conditions. I'd like to limit/avoid those if possible.</p>
<p><strong>Resolution</strong>: I finally settled on performing re-factoring. Thanks to all contributors. You guys rock!</p>
http://stackoverflow.com/questions/1689890/does-exiting-from-a-pthread-release-malloced-memory2Does exiting from a pthread release malloced memory ?jldupont2009-11-06T19:42:59Z2009-11-06T20:00:06Z
<p>Let's say I <code>pthread_create</code> and then <code>pthread_detach</code> it. Now, from <strong>within</strong> the thread function, I <code>malloc</code> some block. </p>
<p>When the thread exits, will the <code>malloc'ed</code> memory be freed automatically?</p>
<p>(been googling for an answer to no avail...)</p>
http://stackoverflow.com/questions/1687415/malloc-results-in-segmentation-fault-after-mprotect2malloc results in segmentation fault after mprotecthanno2009-11-06T12:54:32Z2009-11-06T13:19:26Z
<p>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 protection:</p>
<pre><code>#define PAGESIZE 4096
void* paalloc(int size){ // Allocates and aligns memory
int type_size = sizeof(double);
void* p;
p = malloc(type_size*size+PAGESIZE-1);
p = (void*)(((long) p + PAGESIZE-1) & ~(PAGESIZE-1));
return p;
}
void aprotect(int size, void* array){ // Protects memory after values are set
int type_size = sizeof(double);
if (mprotect(array, type_size*size, PROT_READ)) {
perror("Couldn't mprotect");
}
}
</code></pre>
<p>I want to use mprotect to avoid anything writing into my arrays (which are pre-calculated sine/cosine values). Is this a stupid idea?</p>
http://stackoverflow.com/questions/1671138/gui-for-a-gnu-debugger4GUI for a GNU DebuggerRadek2009-11-04T01:03:25Z2009-11-05T19:46:33Z
<p>Hi, am pretty excited with the GNU Debugger and a GUI called <strong>Insight</strong> as it has saved me A LOT OF time. Thus I am posting this question/answer for other newbies out there like me having problems with their C code looking for a visual way to see what's going on.</p>
<p>I am working on Linux Mint (Ubuntu) btw.</p>
http://stackoverflow.com/questions/1658579/c-memory-allocation-why-there-is-not-enough-memory250k-only0C Memory Allocation: Why there is not enough memory(250K only)Erkan H2009-11-01T22:22:58Z2009-11-02T16:00:35Z
<p>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:</p>
<pre><code>struct IMAGE {
int width, height, maxval;
char **data;
};
void raiseError(char *msg)
{
printf("%s", msg);
getch();
exit(1);
}
//...
IMAGE readPGM()
{
IMAGE image;
image.data = (char **) malloc(sizeof(char)*image.height);
//..
for (i=0; i<image.height; i++) {
image.data[i] = (char *) malloc(sizeof(char)*image.width);
if (image.data[i]=='\0') {
printf("%d\n", i);
raiseError("Not enough memory!..");
}
}
//..
}
//..
</code></pre>
<p>The program exits when i=116. image.width and image.height equals to 500 here, so I want 500x500=250000 bytes to be allocated here. But 116x500 = 58000 bytes are being allocated at maximum. So, is there something that limits it? Is there something wrong with my code? I am posting the full source below, just in case if it is necesarry. The idea is to read a PGM file into the structure IMAGE, process it and rewrite it in another file. As you can tell, it is not complete yet because I couldn't figure out a way to allocate more memory.</p>
<pre><code>#include<stdio.h>
#include<conio.h>
#include<ctype.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#include<alloc.h>
struct IMAGE {
int width, height, maxval;
char **data;
};
void raiseError(char *msg)
{
printf("%s", msg);
getch();
exit(1);
}
char *toString(int num)
{
char sign = 0;
if (num<0) {
sign = -1;
num*=-1;
}
int numLen = 1;
if (sign<0) {
numLen++;
}
int tmpNum = num;
while (tmpNum>9) {
tmpNum /= 10;
numLen++;
}
char *result = (char *)malloc(sizeof(char)*(numLen+1));
result[numLen] = '\0';
char ch;
while (num>9) {
ch = (num%10)+'0';
num /= 10;
result[numLen-1] = ch;
numLen--;
}
result[numLen-1] = num + '0';
if (sign<0)
result[0] = '-';
return result;
}
int toInteger(char *line)
{
int i=strlen(line)-1;
int factor = 1;
int result = 0;
while (i>=0) {
result += factor*(line[i]-'0');
factor *= 10;
i--;
}
return result;
}
char *getNewParam(FILE *fp)
{
char ch = 'X';
char *newParam;
newParam = (char*) malloc(1);
newParam[0] = '\0';
int paramSize = 0;
while (!isspace(ch)) {
ch = fgetc(fp);
if (!isspace(ch)) {
if (ch=='#') {
while (fgetc(fp)!='\n');
continue;
}
paramSize++;
newParam = (char *) realloc(newParam, paramSize+1);
newParam[paramSize-1] = ch;
}
}
newParam[paramSize] = '\0';
return newParam;
}
IMAGE readPGM()
{
FILE *fp;
IMAGE image;
//Open the file.
fp = fopen("seeds2.pgm","r+b");
if (fp=='\0')
raiseError("File could not be opened!..");
//Check if it is a raw PGM(P5)
char *line;
line = getNewParam(fp);
if (strcmp(line, "P5")!=0)
raiseError("File is not a valid raw PGM(P5)");
int paramCount = 0;
int *pgmParams;
pgmParams = (int *)malloc(sizeof(int)*3);
while (paramCount<3) {
line = getNewParam(fp);
pgmParams[paramCount++] = toInteger(line);
}
int pixelSize;
if (pgmParams[2]>255)
pixelSize = 2;
else
pixelSize = 1;
image.width =pgmParams[0];
image.height =pgmParams[1];
image.maxval =pgmParams[2];
free(pgmParams);
image.data = (char **) malloc(sizeof(char)*image.height);
int i,j;
long sum = 0;
for (i=0; i<image.height; i++) {
image.data[i] = (char *) malloc(sizeof(char)*image.width);
sum += sizeof(char)*image.width;
if (image.data[i]=='\0') {
printf("%d\n", i);
raiseError("Not enough memory!..");
}
}
for (i=0; i<image.height; i++) {
for (j=0; j<image.width; j++) {
fread(&image.data[i][j], sizeof(char), image.width, fp);
}
}
fclose(fp);
return image;
}
void savePGM(IMAGE image)
{
FILE *fp = fopen("yeni.pgm", "w+b");
fprintf(fp, "P5\n%s\n%s\n%s\n",
toString(image.width), toString(image.height), toString(image.maxval));
int i,j;
for (i=0; i<image.height; i++) {
for (j=0; j<image.width; j++) {
fwrite(&image.data[i][j], sizeof(char), 1, fp);
}
}
fclose(fp);
}
int main()
{
clrscr();
IMAGE image = readPGM();
//process
savePGM(image);
getch();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1655971/what-happens-if-i-try-to-access-memory-beyond-a-mallocd-region4What happens if I try to access memory beyond a malloc()'d region?metashockwave2009-10-31T23:58:20Z2009-11-01T01:07:11Z
<p>I've allocated a chuck of memory with <code>char* memoryChunk = malloc ( 80* sizeof(char) + 1);</code> What is keeping me from writing into the memory location beyond 81 units? What can I do to prevent that?</p>
<pre><code>void testStage2(void) {
char c_str1[20] = "hello";
char* ut_str1;
char* ut_str2;
printf("Starting stage 2 tests\n");
strcat(c_str1, " world");
printf("%s\n", c_str1); // nothing exciting, prints "hello world"
ut_str1 = utstrdup("hello ");
ut_str1 = utstrrealloc(ut_str1, 20);
utstrcat(ut_str1, c_str1);
printf("%s\n", ut_str1); // slightly more exciting, prints "hello hello world"
utstrcat(ut_str1, " world");
printf("%s\n", ut_str1); // exciting, should print "hello hello world wo", 'cause there's not enough room for the second world
}
char* utstrcat(char* s, char* suffix){
int i = strlen(s),j;
int capacity = *(s - sizeof(unsigned) - sizeof(int));
for ( j =0; suffix[j] != '\0'; j++){
if ((i+j-1) == 20)
return s;
s[i+j] = suffix[j];
}
//strcpy(s, suffix);
s[i + j] = '\0';
return s;
}// append the suffix to s
</code></pre>