malloc for 1 Mb error.


 
Thread Tools Search this Thread
Top Forums Programming malloc for 1 Mb error.
# 1  
Old 09-02-2002
Data malloc for 1 Mb error.

Hi All!

Does some one know I am under UNIX system can not allocate more then 1 Mb memory? It broke program down.

Any information would be greatly appreciated.
Thanks.
# 2  
Old 09-30-2002
Re: malloc for 1 Mb error.

It seems unbelievable.

In one of my program, I did allocate a memory more than 1M, and it works well.

Could you post your code here?
# 3  
Old 10-01-2002
When you malloc space you are attempting to increase the size of the data segment. Most unix system have some limit on the max size of a data segment often controlled by a kernel parameter called maxdsize or something like that. Additional you need to have enough resources (mostly swap area) to handle the additional virtual memory.

On every unix system in existence, if you malloc a MB of memory in a loop you will eventually fail. And if your program starts out with a very large data segment it is certainly possible that won't even be able to malloc one MB.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help with malloc()

Good day! I'm a newbie in C. I'm trying to get an unlimited input from the user using malloc then printing the inputs after the user presses enter. My code works, but there's a warning that I don't know how to fix. Please help me. Thank you. Here's my code: #include <stdio.h> #include... (6 Replies)
Discussion started by: eracav
6 Replies

2. Programming

malloc vs new speed

Which one is faster among malloc and new? My understanding is that since new also has to call constructors after allocating memory it must be slower than malloc. Am I correct? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

3. UNIX for Advanced & Expert Users

Malloc Implementation in C

Hey Guys Some of my friends have got together and we are trying to write a basic kernel similar to Linux. I am trying to implement the malloc function in C and I am using a doubly linked list as the primary data structure. I need to allocate memory for this link list (duh...) and I don't feel... (2 Replies)
Discussion started by: rbansal2
2 Replies

4. Programming

malloc()

Some one please explain me what is Dynamic memory allocation and the use of malloc() function.How do we allocate memory dynamically and also the other way? (3 Replies)
Discussion started by: rash123
3 Replies

5. AIX

Catastrophe in malloc: sbrk() error 1b

Hi , I am facing some problem with C++ compiler ( version 5.0 ) on AIX machine ( 4.3 version). When i run the following compile command, cc -v -D< CONDITIONAL COMPILATION MACROS > -I< HEADER FILES SEARCH PATH >-qlanglvl=extended -g -qnoro -qnoroconst -c test_suman.cpp For security... (0 Replies)
Discussion started by: suman_jakkula
0 Replies

6. Programming

When to use Malloc?

Hi! I hope this is the correct forum to post the question even if I'm a newbie... I am a C-newbie (and really on the edge to be a C-addict ;) ) and have a question. When should I use malloc? To state it differently, when should I NOT use malloc? For instance, if I have an array of... (5 Replies)
Discussion started by: Tonje
5 Replies

7. UNIX for Dummies Questions & Answers

catastrophe in malloc error

Can someone tell me what this means????? :confused: Catastrophe in malloc: sbrk()error 1b IOT/Abort trap (coredump) Thanks! (1 Reply)
Discussion started by: PAUL_ETTE
1 Replies

8. Programming

sqlcxt/malloc error

Bit of a long one this I am running the code below and I am getting a bus error when trying to make a struct member equal a variable. I stepped through the program in dbx and got the following. The structs of interest is raw_txns and la_ins_bkhead Entered while loop in process() t@1 (l@1)... (2 Replies)
Discussion started by: handak9
2 Replies

9. Programming

malloc

hello sir since by mentioning a integer pointer and storing the integers by incrementing the pointer value then what is the purpose of malloc? u can decalre it as in t *p; several integers can be stored by incrementing the value of p, hence what is the diffrence between this... (2 Replies)
Discussion started by: rajashekaran
2 Replies

10. Programming

a problem about malloc()

1 . Thanks everyone who read the post. 2 . the programe is that : #include <stdio.h> #include <string.h> void do_it(char *p) { p = (char *) malloc(100); (void )strcpy(p,"1234"); } int main(void) { char *p; do_it(p); (void )printf("p = %s \n",p); (1 Reply)
Discussion started by: chenhao_no1
1 Replies
Login or Register to Ask a Question