blob: 820ccdb3cf353506393b7a6c4d7966ce4ff95485 [file] [log] [blame]
/*
* qser_sleep.h
*
* QSER auto sleep API.
*
* Author : lb
* Date : 2023/11/23 13:18:26
*/
#ifndef _QSER_SLEEP_H
#define _QSER_SLEEP_H
#include "mbtk_type.h"
int qser_autosuspend_enable(char enable);
int qser_wakelock_create(const char* name , size_t len);
int qser_wakelock_lock(int fd);
int qser_wakelock_unlock(int fd);
int qser_wakelock_destroy(int fd);
#endif /* _QSER_SLEEP_H */