mirror of
https://github.com/swaywm/sway.git
synced 2026-05-05 06:46:49 -04:00
Release lock
This commit is contained in:
parent
6d5c937247
commit
cfee393234
1 changed files with 5 additions and 3 deletions
|
|
@ -57,11 +57,11 @@ bool have_lock() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fd = 0;
|
static int fd = -1;
|
||||||
static int inhibit_cnt=0;
|
static int inhibit_cnt=0;
|
||||||
|
|
||||||
static int cleanup_inhibit(void *data) {
|
static int cleanup_inhibit(void *data) {
|
||||||
fd = 0;
|
fd = -1;
|
||||||
inhibit_cnt=0;
|
inhibit_cnt=0;
|
||||||
wlr_log(L_DEBUG, "Cleanup inhibit");
|
wlr_log(L_DEBUG, "Cleanup inhibit");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
@ -72,6 +72,8 @@ static void prepare_for_sleep(struct wlr_session *session, void *data) {
|
||||||
wlr_log(L_INFO, "PrepareForSleep signal received");
|
wlr_log(L_INFO, "PrepareForSleep signal received");
|
||||||
if(have_lock()) {
|
if(have_lock()) {
|
||||||
wlr_log(L_INFO, "Have lock, no inhibit");
|
wlr_log(L_INFO, "Have lock, no inhibit");
|
||||||
|
if (fd >= 0)
|
||||||
|
close(fd); //Release lock
|
||||||
cleanup_inhibit(NULL);
|
cleanup_inhibit(NULL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -83,7 +85,7 @@ static void prepare_for_sleep(struct wlr_session *session, void *data) {
|
||||||
|
|
||||||
wlr_log(L_INFO, "No lock, will inhibit");
|
wlr_log(L_INFO, "No lock, will inhibit");
|
||||||
|
|
||||||
wlr_session_inhibit_sleep(session);
|
fd = wlr_session_inhibit_sleep(session);
|
||||||
if (!inhibit_cnt) {
|
if (!inhibit_cnt) {
|
||||||
invoke_swaylock();
|
invoke_swaylock();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue