global.h 1.06 KB
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3 4 5 6 7 8 9
 *
 * 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_global_h__
#define INCLUDE_global_h__

10
#include "common.h"
11

12
#include "mwindow.h"
13
#include "hash.h"
14 15

typedef struct {
16 17
	git_error *last_error;
	git_error error_t;
18
	git_buf error_buf;
19
	char oid_fmt[GIT_OID_HEXSZ+1];
20 21 22 23 24 25

	/* On Windows, this is the current child thread that was started by
	 * `git_thread_create`.  This is used to set the thread's exit code
	 * when terminated by `git_thread_exit`.  It is unused on POSIX.
	 */
	git_thread *current_thread;
26 27 28 29
} git_global_st;

git_global_st *git__global_state(void);

30 31
extern git_mutex git__mwindow_mutex;

32 33
#define GIT_GLOBAL (git__global_state())

34 35 36 37
typedef void (*git_global_shutdown_fn)(void);

extern void git__on_shutdown(git_global_shutdown_fn callback);

38
extern void git__free_tls_data(void);
39

40
extern const char *git_libgit2__user_agent(void);
41
extern const char *git_libgit2__ssl_ciphers(void);
42

43
#endif