posix timer_create() function causing memory leak on linux

后端 未结 5 534
无人共我
无人共我 2021-01-17 06:40

I am using timer_create function for timer functionality in my application. When timeout happens, a new thread gets created. That time my application\'s memory usage is gett

5条回答
  •  滥情空心
    2021-01-17 07:08

    I doubt it has anything to do with your timer.

    If you create a new thread, the thread needs space for the stack. As far as I know this memory gets allocated once at thread creation because it has to be contiguous.

    That may sound like a lot of wasted memory, but it is not. First off, you can lower the stack size if you want, second: Only the address-space inside your process gets allocated. Physical memory only gets allocated if you use the stack.

提交回复
热议问题