mirror of
https://github.com/libretro/RetroArch
synced 2025-02-11 15:40:28 +00:00
Start implementing HID polling thread
== DETAILS Looking at the other HID USB drivers, it looks like the typical implementation is to start up a background thread to do the polling, rather than wait for RA to invoke the poll() method. This commit sets up the skeleton of the background thread: - The thread gets created in init() - The thread gets stopped in free() Right now the body of the thread is a 10ms sleep. == TESTING It compiles cleanly, and links. Don't know if it actually works.
This commit is contained in:
parent
203876a206
commit
c3736adb77
@ -26,6 +26,21 @@
|
|||||||
#include "../input_driver.h"
|
#include "../input_driver.h"
|
||||||
|
|
||||||
#define POLL_THREAD_SLEEP 10000
|
#define POLL_THREAD_SLEEP 10000
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
|
||||||
|
#define DEVICE_UNUSED 0
|
||||||
|
#define DEVICE_USED 1
|
||||||
|
|
||||||
|
typedef struct wiiu_hid
|
||||||
|
{
|
||||||
|
HIDClient *client;
|
||||||
|
OSThread *polling_thread;
|
||||||
|
// memory accounting; keep a pointer to the stack buffer so we can clean up later.
|
||||||
|
void *polling_thread_stack;
|
||||||
|
volatile bool polling_thread_quit;
|
||||||
|
} wiiu_hid_t;
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
|
|
||||||
#define DEVICE_UNUSED 0
|
#define DEVICE_UNUSED 0
|
||||||
#define DEVICE_USED 1
|
#define DEVICE_USED 1
|
||||||
@ -71,8 +86,11 @@ static void start_polling_thread(wiiu_hid_t *hid);
|
|||||||
static void stop_polling_thread(wiiu_hid_t *hid);
|
static void stop_polling_thread(wiiu_hid_t *hid);
|
||||||
static int wiiu_hid_polling_thread(int argc, const char **argv);
|
static int wiiu_hid_polling_thread(int argc, const char **argv);
|
||||||
static void wiiu_hid_do_poll(wiiu_hid_t *hid);
|
static void wiiu_hid_do_poll(wiiu_hid_t *hid);
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
static void enqueue_device(void);
|
static void enqueue_device(void);
|
||||||
|
=======
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HID driver entrypoints registered with hid_driver_t
|
* HID driver entrypoints registered with hid_driver_t
|
||||||
@ -167,6 +185,7 @@ static void wiiu_hid_free(void *data)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
static void free_pad_list(void) {
|
static void free_pad_list(void) {
|
||||||
wiiu_hid_user_t *top;
|
wiiu_hid_user_t *top;
|
||||||
|
|
||||||
@ -177,6 +196,8 @@ static void free_pad_list(void) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
=======
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
/**
|
/**
|
||||||
* This is a no-op because polling is done with a worker thread.
|
* This is a no-op because polling is done with a worker thread.
|
||||||
*/
|
*/
|
||||||
@ -199,11 +220,15 @@ static void start_polling_thread(wiiu_hid_t *hid) {
|
|||||||
OSThread *thread = memalign(8, sizeof(OSThread));
|
OSThread *thread = memalign(8, sizeof(OSThread));
|
||||||
void *stack = memalign(32, stack_size);
|
void *stack = memalign(32, stack_size);
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
if(pad_list_mutex == NULL) {
|
if(pad_list_mutex == NULL) {
|
||||||
pad_list_mutex = new_fastmutex("pad_list");
|
pad_list_mutex = new_fastmutex("pad_list");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!thread || !stack || !pad_list_mutex)
|
if(!thread || !stack || !pad_list_mutex)
|
||||||
|
=======
|
||||||
|
if(!thread || !stack)
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
if(!OSCreateThread(thread, wiiu_hid_polling_thread, 1, (char *)hid, stack, stack_size, priority, attributes))
|
if(!OSCreateThread(thread, wiiu_hid_polling_thread, 1, (char *)hid, stack, stack_size, priority, attributes))
|
||||||
@ -214,8 +239,11 @@ static void start_polling_thread(wiiu_hid_t *hid) {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
|
<<<<<<< HEAD
|
||||||
if(pad_list_mutex)
|
if(pad_list_mutex)
|
||||||
delete_fastmutex(pad_list_mutex);
|
delete_fastmutex(pad_list_mutex);
|
||||||
|
=======
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
if(stack)
|
if(stack)
|
||||||
free(stack);
|
free(stack);
|
||||||
if(thread)
|
if(thread)
|
||||||
@ -235,11 +263,14 @@ static void stop_polling_thread(wiiu_hid_t *hid) {
|
|||||||
|
|
||||||
free(hid->polling_thread);
|
free(hid->polling_thread);
|
||||||
free(hid->polling_thread_stack);
|
free(hid->polling_thread_stack);
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
// with the thread stopped, we don't need the mutex.
|
// with the thread stopped, we don't need the mutex.
|
||||||
delete_fastmutex(pad_list_mutex);
|
delete_fastmutex(pad_list_mutex);
|
||||||
pad_list_mutex = NULL;
|
pad_list_mutex = NULL;
|
||||||
free_pad_list();
|
free_pad_list();
|
||||||
|
=======
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -261,6 +292,7 @@ static void wiiu_hid_do_poll(wiiu_hid_t *hid) {
|
|||||||
usleep(POLL_THREAD_SLEEP);
|
usleep(POLL_THREAD_SLEEP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
int32_t wiiu_attach_device(HIDClient *client, HIDDevice *device) {
|
int32_t wiiu_attach_device(HIDClient *client, HIDDevice *device) {
|
||||||
wiiu_hid_user_t *adapter = new_wiiu_hid_user_t();
|
wiiu_hid_user_t *adapter = new_wiiu_hid_user_t();
|
||||||
|
|
||||||
@ -278,6 +310,8 @@ int32_t wiiu_detach_device(HIDClient *client, HIDDevice *device) {
|
|||||||
return DEVICE_UNUSED;
|
return DEVICE_UNUSED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
=======
|
||||||
|
>>>>>>> Start implementing HID polling thread
|
||||||
/**
|
/**
|
||||||
* Callbacks
|
* Callbacks
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user