Sha256: 83963ee373f9435e8eeb118bf412db0f96e3a918cf6dfdd0483ec9e26a70a3eb

Contents?: true

Size: 953 Bytes

Versions: 7

Compression:

Stored size: 953 Bytes

Contents

/*
 * 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;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rugged-1.1.1 vendor/libgit2/src/alloc.c
rugged-1.1.0 vendor/libgit2/src/alloc.c
rugged-1.0.1 vendor/libgit2/src/alloc.c
rugged-1.0.0 vendor/libgit2/src/alloc.c
rugged-0.99.0 vendor/libgit2/src/alloc.c
rugged-0.28.4 vendor/libgit2/src/alloc.c
rugged-0.27.10 vendor/libgit2/src/alloc.c