In answer to this question, some people have said to use _Exit() and others have said to use _exit(). Could someone explain the difference (if any) between the two, and the origins of both?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right from the man page here:
Although in C++11, it is standardized as either std::_Exit or std::quick_exit. According to Mike Seymour here.