summaryrefslogtreecommitdiff
path: root/include/git2/atexit.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/atexit.h')
-rw-r--r--include/git2/atexit.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/git2/atexit.h b/include/git2/atexit.h
new file mode 100644
index 000000000..cab8e1872
--- /dev/null
+++ b/include/git2/atexit.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) the libgit2 contributors. All rights reserved.
+ *
+ * This file is part of libgit2, distributed under the GNU GPL v2 with
+ * a Linking Exception. For full terms see the included COPYING file.
+ */
+#ifndef INCLUDE_git_atexit_h__
+#define INCLUDE_git_atexit_h__
+
+#include "common.h"
+
+/**
+ * Execute cleanup for in-process operations
+ *
+ * This will e.g. delete lockfiles we own.
+ */
+GIT_EXTERN(int) git_atexit(void);
+
+#endif /* INCLUDE_git_atexit_h__ */