程序退出时做些事情

程序退出时做些事情

本文介绍了C:程序退出时做些事情的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C语言中,如果我的应用程序意外结束,我可以在此之前调用一个函数吗?我正在将一个标志写入数据库(processRunning = 1),以防止其他应用程序启动类似的进程.当应用程序结束时,它不会将该标志改回来.

In C, if my application ends unexpectedly can I call a function before that happens? I'm writing a flag into a database (processRunning = 1) that prevents other applications from starting a similar process. When the application ends it would not change that flag back.

推荐答案

查看 C标准库的atexit API.

look into the atexit API of the C standard library.

这篇关于C:程序退出时做些事情的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 21:21