What steps will reproduce the problem?
1. send 11 signal to process
2. preocess did not exit
What is the expected output? What do you see instead?
process should exit,but it did not!
What version of the product are you using? On what operating system?
glog-0.3.3
Please provide any additional information below.
do memory operate in main,then kill -1 pid ,it will not exit!
test code as bellow:
#include <glog/logging.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
char *test;
google::InitGoogleLogging(argv[0]);
google::InstallFailureSignalHandler();
while(1)
{
test=(char *)malloc(11);
free(test);
}
}
Original issue reported on code.google.com by huangzhe...@126.com on 17 Jan 2014 at 1:21
Original issue reported on code.google.com by
huangzhe...@126.com
on 17 Jan 2014 at 1:21