diff options
| author | Bryan Ischo <bryan@ischo.com> | 2008-12-30 12:02:46 +0000 |
|---|---|---|
| committer | Bryan Ischo <bryan@ischo.com> | 2008-12-30 12:02:46 +0000 |
| commit | 37d90995389c2aed1d37b7b3aa6215759e14b94a (patch) | |
| tree | 45a0121b98f6843da1edd61579049825988592cb /src/mingw_functions.c | |
| parent | ff546d9907178b66d844772840f763e34eca3bf8 (diff) | |
| download | ceph-libs3-37d90995389c2aed1d37b7b3aa6215759e14b94a.tar.gz | |
* tabify source, to fix the broken .emacs configuration I have been using
since forever (finally realized it was broken and fixed it today!)
Diffstat (limited to 'src/mingw_functions.c')
| -rw-r--r-- | src/mingw_functions.c | 114 |
1 files changed, 57 insertions, 57 deletions
diff --git a/src/mingw_functions.c b/src/mingw_functions.c index 0e2b7b2..fb3ec4d 100644 --- a/src/mingw_functions.c +++ b/src/mingw_functions.c @@ -29,91 +29,91 @@ unsigned long pthread_self() { - return (unsigned long) GetCurrentThreadId(); + return (unsigned long) GetCurrentThreadId(); } int pthread_mutex_init(pthread_mutex_t *mutex, void *v) { - (void) v; + (void) v; - InitializeCriticalSection(&(mutex->criticalSection)); + InitializeCriticalSection(&(mutex->criticalSection)); - return 0; + return 0; } int pthread_mutex_lock(pthread_mutex_t *mutex) { - EnterCriticalSection(&(mutex->criticalSection)); + EnterCriticalSection(&(mutex->criticalSection)); - return 0; + return 0; } int pthread_mutex_unlock(pthread_mutex_t *mutex) { - LeaveCriticalSection(&(mutex->criticalSection)); + LeaveCriticalSection(&(mutex->criticalSection)); - return 0; + return 0; } int pthread_mutex_destroy(pthread_mutex_t *mutex) { - DeleteCriticalSection(&(mutex->criticalSection)); + DeleteCriticalSection(&(mutex->criticalSection)); - return 0; + 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; + 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; } |
