in glibc malloc i am trying to maintain a time stamp per allocation. There is a separate hash table which i have created in glibc itself stores this timestamp entries. The format of the timestamp is "DD-HH:MM:SS". Inside the glibc malloc code, I have to call my function get_time(), which is something like this:

void  get_time(char timeBuff[])
        {
        time_t rawtime;
        struct tm newtime;
        time (&rawtime);
        localtime_r(&rawtime,&newtime);
        strftime (timeBuff,12, "DD-HH:MM:SS", &newtime);    
        }

The issue is localtime_r() somewhere down the line calls malloc() and this becomes recursive. Can you please suggest me if there is any sort of function that also does the same job without calling malloc() or better way to achieve this ?

Thanks, Kapil

link|improve this question

50% accept rate
5  
I know it's outside the scope of your question but... why don't you simply store the UNIX timestamp in integer form and simply translate it to the correct format when it's needed? – CAFxX Nov 3 '11 at 12:39
Do you have to make changes in glibc? Can't you do a wrapper in your own program around malloc with this extra functionality? – Joachim Pileborg Nov 3 '11 at 12:46
i did consider that possibility to just use time() call and store raw time i.e number of seconds since epoch, but thats going to be bit cumbersome and will resort only if absolutely required. REgarding using a wrapper, no that is not to be done. – Kapil Nov 3 '11 at 13:05
I think that localtime_r does a malloc because you give it an unallocated pointer. May be if you try to use a non-dynamic variable, perhaps you get some results. – Nicolás Nov 3 '11 at 14:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.