pthread.c 2.56 KB
Newer Older
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
/*
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2,
 * as published by the Free Software Foundation.
 *
 * In addition to the permissions in the GNU General Public License,
 * the authors give you unlimited permission to link the compiled
 * version of this file into combinations with other programs,
 * and to distribute those combinations without any restriction
 * coming from the use of this file.  (The General Public License
 * restrictions do apply in other respects; for example, they cover
 * modification of the file, and distribution when not linked into
 * a combined executable.)
 *
 * This file is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 *  Original code by Ramiro Polla (Public Domain)
 */

#include "pthread.h"

int pthread_create(pthread_t *GIT_RESTRICT thread,
                   const pthread_attr_t *GIT_RESTRICT GIT_UNUSED(attr),
                   void *(*start_routine)(void*), void *GIT_RESTRICT arg)
{
	GIT_UNUSED_ARG(attr);
	*thread = (pthread_t) CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)start_routine, arg, 0, NULL);
36
	return *thread ? GIT_SUCCESS : git__throw(GIT_EOSERR, "Failed to create pthread");
37 38 39 40 41 42 43 44 45 46 47
}

int pthread_join(pthread_t thread, void **value_ptr)
{
    int ret;
    ret = WaitForSingleObject(thread, INFINITE);
    if (ret && value_ptr)
        GetExitCodeThread(thread, (void*) value_ptr);
    return -(!!ret);
}

Vicent Marti committed
48 49
int pthread_mutex_init(pthread_mutex_t *GIT_RESTRICT mutex,
                       const pthread_mutexattr_t *GIT_RESTRICT GIT_UNUSED(mutexattr))
50
{
51
    GIT_UNUSED_ARG(mutexattr);
Vicent Marti committed
52
    InitializeCriticalSection(mutex);
53 54 55 56 57
    return 0;
}

int pthread_mutex_destroy(pthread_mutex_t *mutex)
{
58 59
    DeleteCriticalSection(mutex);
    return 0;
60 61
}

Vicent Marti committed
62
int pthread_mutex_lock(pthread_mutex_t *mutex)
63
{
Vicent Marti committed
64
    EnterCriticalSection(mutex);
65 66 67
    return 0;
}

Vicent Marti committed
68
int pthread_mutex_unlock(pthread_mutex_t *mutex)
69
{
Vicent Marti committed
70
    LeaveCriticalSection(mutex);
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    return 0;
}

int pthread_num_processors_np(void)
{
    DWORD_PTR p, s;
    int n = 0;

    if (GetProcessAffinityMask(GetCurrentProcess(), &p, &s))
        for (; p; p >>= 1)
            n += p&1;

    return n ? n : 1;
}