mirror of git://gcc.gnu.org/git/gcc.git
gthr-win32.c: CreateSemaphoreW instead of CreateSemaphoreA.
2013-09-17 Jacek Caban <jacek@codeweavers.com> * config/i386/gthr-win32.c: CreateSemaphoreW instead of CreateSemaphoreA. * config/i386/gthr-win32.h: Likewise. From-SVN: r202648
This commit is contained in:
parent
78bbd7655e
commit
dff717d29b
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-09-17 Jacek Caban <jacek@codeweavers.com>
|
||||||
|
|
||||||
|
* config/i386/gthr-win32.c: CreateSemaphoreW instead of
|
||||||
|
CreateSemaphoreA.
|
||||||
|
* config/i386/gthr-win32.h: Likewise.
|
||||||
|
|
||||||
2013-09-16 DJ Delorie <dj@redhat.com>
|
2013-09-16 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
* config/rl78/vregs.h: Add G10 register definitions.
|
* config/rl78/vregs.h: Add G10 register definitions.
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ void
|
||||||
__gthr_win32_mutex_init_function (__gthread_mutex_t *mutex)
|
__gthr_win32_mutex_init_function (__gthread_mutex_t *mutex)
|
||||||
{
|
{
|
||||||
mutex->counter = -1;
|
mutex->counter = -1;
|
||||||
mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
|
mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -195,7 +195,7 @@ __gthr_win32_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex)
|
||||||
mutex->counter = -1;
|
mutex->counter = -1;
|
||||||
mutex->depth = 0;
|
mutex->depth = 0;
|
||||||
mutex->owner = 0;
|
mutex->owner = 0;
|
||||||
mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
|
mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
||||||
|
|
@ -635,7 +635,7 @@ static inline void
|
||||||
__gthread_mutex_init_function (__gthread_mutex_t *__mutex)
|
__gthread_mutex_init_function (__gthread_mutex_t *__mutex)
|
||||||
{
|
{
|
||||||
__mutex->counter = -1;
|
__mutex->counter = -1;
|
||||||
__mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
|
__mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
|
|
@ -697,7 +697,7 @@ __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *__mutex)
|
||||||
__mutex->counter = -1;
|
__mutex->counter = -1;
|
||||||
__mutex->depth = 0;
|
__mutex->depth = 0;
|
||||||
__mutex->owner = 0;
|
__mutex->owner = 0;
|
||||||
__mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
|
__mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue