summaryrefslogtreecommitdiff
path: root/src/hash/hash_win32.c
Commit message (Collapse)AuthorAgeFilesLines
* sha1: don't inline `git_hash_global_init` for win32ethomson/win32_hashEdward Thomson2019-04-041-0/+15
| | | | | Users of the Win32 hash cannot be inlined, as it uses a static struct. Don't inline it, but continue to declare the function in the header.
* Each hash implementation should define `git_hash_global_init`Aaron Patterson2019-03-221-15/+0
| | | | | | This means the forward declaration isn't necessary. The forward declaration can cause compilation errors as it conflicts with the `GIT_INLINE` declaration (the signatures are different).
* git_error: use new names in internal APIs and usageEdward Thomson2019-01-221-13/+13
| | | | | Move to the `git_error` name in the internal API for error-related functions.
* hash: win32: fix missing comma in `giterr_set`Patrick Steinhardt2018-02-091-1/+1
|
* hash: set error messages on failureethomson/odb_alloc_errorEdward Thomson2018-02-091-8/+33
|
* hash: win32 hash mechanism should support large filesEdward Thomson2017-12-201-6/+24
| | | | | | | Teach the win32 hash mechanisms to support large files. The hash primitives take at most `ULONG_MAX` bytes at a time. Loop, giving the hash function the maximum supported number of bytes, until we have hashed the entire file.
* Make sure to always include "common.h" firstPatrick Steinhardt2017-07-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | Next to including several files, our "common.h" header also declares various macros which are then used throughout the project. As such, we have to make sure to always include this file first in all implementation files. Otherwise, we might encounter problems or even silent behavioural differences due to macros or defines not being defined as they should be. So in fact, our header and implementation files should make sure to always include "common.h" first. This commit does so by establishing a common include pattern. Header files inside of "src" will now always include "common.h" as its first other file, separated by a newline from all the other includes to make it stand out as special. There are two cases for the implementation files. If they do have a matching header file, they will always include this one first, leading to "common.h" being transitively included as first file. If they do not have a matching header file, they instead include "common.h" as first file themselves. This fixes the outlined problems and will become our standard practice for header and source files inside of the "src/" from now on.
* Rename git_threads_ to git_libgit2_Carlos Martín Nieto2014-11-081-1/+1
| | | | | | This describes their purpose better, as we now initialize ssl and some other global stuff in there. Calling the init function is not something which has been optional for a while now.
* Add simple global shutdown hooksRussell Belfer2013-09-171-9/+11
| | | | | | | | | | Increasingly there are a number of components that want to do some cleanup at global shutdown time (at least if there are not going to be memory leaks). This creates a very simple system of shutdown hooks that will be invoked by git_threads_shutdown. Right now, the maximum number of hooks is hardcoded, but since adding a hook is not a public API, it should be fine and I thought it was better to start off with really simple code.
* Merge pull request #1805 from libgit2/threading-packed-loadVicent Martí2013-08-281-1/+2
|\ | | | | Thread safety for the refdb_fs
| * Load SRWLock APIs at runtimeRussell Belfer2013-08-261-1/+2
| | | | | | | | | | | | This loads SRWLock APIs at runtime and in their absence (i.e. on Windows before Vista) falls back on a regular CRITICAL_SECTION that will not permit concurrent readers.
* | Improve win32 version check, no ipv6 tests on XPEdward Thomson2013-08-271-19/+1
|/
* Revert "hash: remove git_hash_init from internal api"Michael Schubert2013-02-261-2/+2
| | | | | This reverts commit efe7fad6c96a3d6197a218aeaa561ec676794499, except for the indentation fixes.
* hash: remove git_hash_init from internal apiMichael Schubert2013-02-261-2/+2
| | | | Along with that, fix indentation in tests-clar/object/raw/hash.c
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Fix warnings on Win64 buildRussell Belfer2012-11-271-2/+2
|
* unload dll / destroy hash ctxs at shutdownEdward Thomson2012-11-131-0/+25
|
* move hash library func ptrs to global globalEdward Thomson2012-11-131-43/+46
|
* Remove git_hash_ctx_new - callers now _ctx_init()Edward Thomson2012-11-131-35/+22
|
* Win32 CryptoAPI and CNG support for SHA1Edward Thomson2012-11-131-0/+276