summaryrefslogtreecommitdiff
path: root/util/alloc.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-04-30 09:27:45 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-04-30 09:27:45 +0100
commit0fb43f68fe4bbf41238ef1a96e0827eeff769f7c (patch)
treea6fa2a8a6c58cf2f4b5e4f109bef15813548b49a /util/alloc.c
parent639df9b189ea489f30a1bb6b0c3d67c575262129 (diff)
downloadlibgit2-0fb43f68fe4bbf41238ef1a96e0827eeff769f7c.tar.gz
util as a directoryethomson/util_as_a_directory
Diffstat (limited to 'util/alloc.c')
-rw-r--r--util/alloc.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/util/alloc.c b/util/alloc.c
new file mode 100644
index 000000000..51c4d8029
--- /dev/null
+++ b/util/alloc.c
@@ -0,0 +1,43 @@
+/*
+ * 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.
+ */
+
+#include "alloc.h"
+
+#include "allocators/stdalloc.h"
+#include "allocators/win32_crtdbg.h"
+
+git_allocator git__allocator;
+
+static int setup_default_allocator(void)
+{
+#if defined(GIT_MSVC_CRTDBG)
+ return git_win32_crtdbg_init_allocator(&git__allocator);
+#else
+ return git_stdalloc_init_allocator(&git__allocator);
+#endif
+}
+
+int git_allocator_global_init(void)
+{
+ /*
+ * We don't want to overwrite any allocator which has been set before
+ * the init function is called.
+ */
+ if (git__allocator.gmalloc != NULL)
+ return 0;
+
+ return setup_default_allocator();
+}
+
+int git_allocator_setup(git_allocator *allocator)
+{
+ if (!allocator)
+ return setup_default_allocator();
+
+ memcpy(&git__allocator, allocator, sizeof(*allocator));
+ return 0;
+}