mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Get rid of duplicate typedef
This commit is contained in:
parent
94845d0170
commit
c60a529543
1 changed files with 2 additions and 2 deletions
|
@ -21,10 +21,10 @@
|
||||||
WINBASEAPI BOOL WINAPI
|
WINBASEAPI BOOL WINAPI
|
||||||
TryEnterCriticalSection(IN OUT LPCRITICAL_SECTION lpCriticalSection);
|
TryEnterCriticalSection(IN OUT LPCRITICAL_SECTION lpCriticalSection);
|
||||||
|
|
||||||
typedef struct rb_thread_cond_struct {
|
struct rb_thread_cond_struct {
|
||||||
struct cond_event_entry *next;
|
struct cond_event_entry *next;
|
||||||
struct cond_event_entry *prev;
|
struct cond_event_entry *prev;
|
||||||
} rb_nativethread_cond_t;
|
};
|
||||||
|
|
||||||
typedef struct native_thread_data_struct {
|
typedef struct native_thread_data_struct {
|
||||||
HANDLE interrupt_event;
|
HANDLE interrupt_event;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue