git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob cb32f8c5048976211ef668fea8129aeecf9aaece 1861 bytes (raw)
name: compat/win32/pthread.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
/*
 * Copyright (C) 2009 Andrzej K. Haczewski <ahaczewski@gmail.com>
 *
 * DISCLAIMER: The implementation is Git-specific, it is subset of original
 * Pthreads API, without lots of other features that Git doesn't use.
 * Git also makes sure that the passed arguments are valid, so there's
 * no need for double-checking.
 */

#include "../../git-compat-util.h"
#include "pthread.h"

#include <errno.h>
#include <limits.h>

static unsigned __stdcall win32_start_routine(void *arg)
{
	pthread_t *thread = arg;
	thread->tid = GetCurrentThreadId();
	thread->arg = thread->start_routine(thread->arg);
	return 0;
}

int pthread_create(pthread_t *thread, const void *unused,
		   void *(*start_routine)(void*), void *arg)
{
	thread->arg = arg;
	thread->start_routine = start_routine;
	thread->handle = (HANDLE)
		_beginthreadex(NULL, 0, win32_start_routine, thread, 0, NULL);

	if (!thread->handle)
		return errno;
	else
		return 0;
}

int win32_pthread_join(pthread_t *thread, void **value_ptr)
{
	DWORD result = WaitForSingleObject(thread->handle, INFINITE);
	switch (result) {
		case WAIT_OBJECT_0:
			if (value_ptr)
				*value_ptr = thread->arg;
			return 0;
		case WAIT_ABANDONED:
			return EINVAL;
		default:
			return err_win_to_posix(GetLastError());
	}
}

pthread_t pthread_self(void)
{
	pthread_t t = { NULL };
	t.tid = GetCurrentThreadId();
	return t;
}

/* Adapted from libav's compat/w32pthreads.h. */
int pthread_once(pthread_once_t *once_control, void (*init_routine)(void))
{
	BOOL pending = FALSE;
	int ret = 0;

	if (!InitOnceBeginInitialize(once_control, 0, &pending, NULL)) {
		ret = err_win_to_posix(GetLastError());
	} else if (pending) {
		init_routine();
		if (!InitOnceComplete(once_control, 0, NULL))
			ret = err_win_to_posix(GetLastError());
	}

	/* POSIX doesn't allow pthread_once() to return EINTR */
	return ret == EINTR ? EIO : ret;
}

debug log:

solving cb32f8c504 ...
found cb32f8c504 in https://public-inbox.org/git/783fcddf8db92805ecab2d209d04466d22312075.1593208411.git.matheus.bernardino@usp.br/
found 2e7eead42c in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100644 2e7eead42cb008980c7a3b4de63050897c2996da	compat/win32/pthread.c

applying [1/1] https://public-inbox.org/git/783fcddf8db92805ecab2d209d04466d22312075.1593208411.git.matheus.bernardino@usp.br/
diff --git a/compat/win32/pthread.c b/compat/win32/pthread.c
index 2e7eead42c..cb32f8c504 100644

Checking patch compat/win32/pthread.c...
Applied patch compat/win32/pthread.c cleanly.

index at:
100644 cb32f8c5048976211ef668fea8129aeecf9aaece	compat/win32/pthread.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).