6db4831e98
Android 14
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2020, Samsung Electronics Co. Ltd. All Rights Reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/jiffies.h>
|
|
|
|
#include "shub_wait_event.h"
|
|
|
|
int shub_wait_event_timeout(struct shub_waitevent *lock, int timeout)
|
|
{
|
|
int ret;
|
|
ret = wait_event_interruptible_timeout(lock->waitqueue, atomic_read(&lock->state), msecs_to_jiffies(timeout));
|
|
|
|
if(ret == 0)
|
|
return -ETIME;
|
|
else
|
|
return 0;
|
|
|
|
}
|
|
|
|
void shub_lock_wait_event(struct shub_waitevent *lock)
|
|
{
|
|
atomic_set(&lock->state, 0);
|
|
}
|
|
|
|
void shub_wake_up_wait_event(struct shub_waitevent *lock)
|
|
{
|
|
atomic_set(&lock->state, 1);
|
|
wake_up_interruptible_sync(&lock->waitqueue);
|
|
} |