global.h 1.14 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
} git_global_st;

28
#ifdef GIT_OPENSSL
29 30 31 32
# include <openssl/ssl.h>
extern SSL_CTX *git__ssl_ctx;
#endif

33 34
git_global_st *git__global_state(void);

35 36
extern git_mutex git__mwindow_mutex;

37 38
#define GIT_GLOBAL (git__global_state())

39 40 41 42
typedef void (*git_global_shutdown_fn)(void);

extern void git__on_shutdown(git_global_shutdown_fn callback);

43
extern void git__free_tls_data(void);
44

45
extern const char *git_libgit2__user_agent(void);
46
extern const char *git_libgit2__ssl_ciphers(void);
47

48
#endif