File: mingw_functions.c

package info (click to toggle)
libs3 2.0-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 704 kB
  • ctags: 837
  • sloc: ansic: 6,949; xml: 227; sh: 109; makefile: 44
file content (119 lines) | stat: -rw-r--r-- 2,774 bytes parent folder | download | duplicates (8)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/** **************************************************************************
 * mingw_functions.c
 * 
 * Copyright 2008 Bryan Ischo <bryan@ischo.com>
 * 
 * This file is part of libs3.
 * 
 * libs3 is free software: you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation, version 3 of the License.
 *
 * In addition, as a special exception, the copyright holders give
 * permission to link the code of this library and its programs with the
 * OpenSSL library, and distribute linked combinations including the two.
 *
 * libs3 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 version 3
 * along with libs3, in a file named COPYING.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 ************************************************************************** **/

#include <pthread.h>
#include <sys/utsname.h>

unsigned long pthread_self()
{
    return (unsigned long) GetCurrentThreadId();
}


int pthread_mutex_init(pthread_mutex_t *mutex, void *v)
{
    (void) v;

    InitializeCriticalSection(&(mutex->criticalSection));

    return 0;
}


int pthread_mutex_lock(pthread_mutex_t *mutex)
{
    EnterCriticalSection(&(mutex->criticalSection));

    return 0;
}


int pthread_mutex_unlock(pthread_mutex_t *mutex)
{
    LeaveCriticalSection(&(mutex->criticalSection));

    return 0;
}


int pthread_mutex_destroy(pthread_mutex_t *mutex)
{
    DeleteCriticalSection(&(mutex->criticalSection));

    return 0;
}


int uname(struct utsname *u)
{
    OSVERSIONINFO info;
    info.dwOSVersionInfoSize = sizeof(info);

    if (!GetVersionEx(&info)) {
        return -1;
    }

    u->machine = "";

    switch (info.dwMajorVersion) {
    case 4:
        switch (info.dwMinorVersion) {
        case 0:
            u->sysname = "Microsoft Windows NT 4.0";
            break;
        case 10:
            u->sysname = "Microsoft Windows 98";
            break;
        case 90:
            u->sysname = "Microsoft Windows Me";
            break;
        default:
            return -1;
        }
        break;

    case 5:
        switch (info.dwMinorVersion) {
        case 0:
            u->sysname = "Microsoft Windows 2000";
            break;
        case 1:
            u->sysname = "Microsoft Windows XP";
            break;
        case 2:
            u->sysname = "Microsoft Server 2003";
            break;
        default:
            return -1;
        }
        break;

    default:
        return -1;
    }

    return 0;
}