mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-09 04:15:52 +00:00
dde_linux lx_emul wait: get rid of unused args
This commit is contained in:
parent
cc4a72243d
commit
770fc77584
@ -15,7 +15,7 @@
|
||||
#include <lx_kit/scheduler.h>
|
||||
|
||||
|
||||
void prepare_to_wait(wait_queue_head_t *q, wait_queue_entry_t *w, int state)
|
||||
void prepare_to_wait(wait_queue_head_t *q, wait_queue_entry_t *, int)
|
||||
{
|
||||
if (!q) { return; }
|
||||
|
||||
@ -26,13 +26,13 @@ void prepare_to_wait(wait_queue_head_t *q, wait_queue_entry_t *w, int state)
|
||||
}
|
||||
|
||||
|
||||
void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_entry_t *w, int state)
|
||||
void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_entry_t *, int)
|
||||
{
|
||||
prepare_to_wait(q, w, state);
|
||||
prepare_to_wait(q, 0, 0);
|
||||
}
|
||||
|
||||
|
||||
void finish_wait(wait_queue_head_t *q, wait_queue_entry_t *w)
|
||||
void finish_wait(wait_queue_head_t *q, wait_queue_entry_t *)
|
||||
{
|
||||
if (!q) { return; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user