Skip to content

Commit

Permalink
Fixed missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
emoon committed Feb 10, 2024
1 parent 83d1101 commit 804f074
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/threaddep/thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ extern int uae_sem_trywait(uae_sem_t*);
extern int uae_sem_trywait_delay(uae_sem_t*, int);
extern void uae_sem_post(uae_sem_t*);
extern void uae_sem_unpost(uae_sem_t*);
extern void uae_sem_wait(uae_sem_t*t);
extern void uae_sem_wait(uae_sem_t* t);
extern void uae_sem_init(uae_sem_t*, int manual_reset, int initial_state);
extern int uae_start_thread(const TCHAR *name, void (*f)(void *), void *arg, uae_thread_id *thread);
extern int uae_start_thread_fast(void (*f)(void *), void *arg, uae_thread_id *thread);
extern void uae_end_thread(uae_thread_id *thread);
extern void uae_set_thread_priority(uae_thread_id *, int);
extern int uae_start_thread(const TCHAR* name, void (*f)(void*), void* arg, uae_thread_id* thread);
extern int uae_start_thread_fast(void (*f)(void*), void* arg, uae_thread_id* thread);
extern void uae_end_thread(uae_thread_id* thread);
extern void uae_set_thread_priority(uae_thread_id*, int);
extern uae_thread_id uae_thread_get_id(void);

//#include "commpipe.h"
// #include "commpipe.h"

inline void uae_wait_thread(uae_thread_id tid)
{
inline void uae_wait_thread(uae_thread_id tid) {
// WaitForSingleObject (tid, INFINITE);
// CloseHandle (tid);
}

0 comments on commit 804f074

Please sign in to comment.