mirror of
https://github.com/kovidgoyal/kitty.git
synced 2025-12-13 20:36:22 +01:00
26 lines
579 B
C
26 lines
579 B
C
/*
|
|
* cleanup.c
|
|
* Copyright (C) 2021 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#include "cleanup.h"
|
|
#include <unistd.h>
|
|
|
|
|
|
kitty_cleanup_at_exit_func exit_funcs[NUM_CLEANUP_FUNCS] = {0};
|
|
|
|
void
|
|
register_at_exit_cleanup_func(AtExitCleanupFunc which, kitty_cleanup_at_exit_func func) {
|
|
if (which < NUM_CLEANUP_FUNCS) exit_funcs[which] = func;
|
|
}
|
|
|
|
void
|
|
run_at_exit_cleanup_functions(void) {
|
|
for (unsigned i = 0; i < NUM_CLEANUP_FUNCS; i++) {
|
|
if (exit_funcs[i]) exit_funcs[i]();
|
|
exit_funcs[i] = NULL;
|
|
}
|
|
}
|