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
mallocwith this extra functionality? – Joachim Pileborg Nov 3 '11 at 12:46localtime_rdoes 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