From b55234a74d17503ca2fecb273cfcc44549f9e43e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 16 Mar 2025 14:45:03 +0100 Subject: Major refactoring and some fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/location-corelocation.m | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'src/location-corelocation.m') diff --git a/src/location-corelocation.m b/src/location-corelocation.m index f4a3afb..435697d 100644 --- a/src/location-corelocation.m +++ b/src/location-corelocation.m @@ -1,5 +1,7 @@ -/* location-corelocation.m -- CoreLocation (OSX) location provider source - * This file is part of redshift-ng. +/* redshift-ng - Automatically adjust display colour temperature according the Sun + * + * Copyright (c) 2009-2018 Jon Lund Steffensen + * Copyright (c) 2014-2016, 2025 Mattias Andrée * * redshift-ng is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,9 +15,6 @@ * * You should have received a copy of the GNU General Public License * along with redshift-ng. If not, see . - * - * Copyright (c) 2014-2017 Jon Lund Steffensen - * Copyright (c) 2025 Mattias Andrée */ #include "common.h" @@ -67,7 +66,7 @@ struct location_state { self.state->error = 1; [self.state->lock unlock]; - pipeutils_signal(self.state->pipe_fd_write); + write(self.state->pipe_fd_write, "", 1); } - (void)markUnavailable @@ -76,7 +75,7 @@ struct location_state { self.state->available = 0; [self.state->lock unlock]; - pipeutils_signal(self.state->pipe_fd_write); + write(self.state->pipe_fd_write, "", 1); } - (void)locationManager:(CLLocationManager *)manager @@ -92,7 +91,7 @@ struct location_state { [self.state->lock unlock]; - pipeutils_signal(self.state->pipe_fd_write); + write(self.state->pipe_fd_write, "", 1); } - (void)locationManager:(CLLocationManager *)manager @@ -191,7 +190,7 @@ location_corelocation_start(struct location_state *state) state->location.lat = 0; state->location.lon = 0; - if (pipeutils_create_nonblocking(pipefds)) { + if (pipe_nonblock(pipefds)) { weprintf(_("Failed to start CoreLocation provider!")); return -1; } @@ -199,7 +198,7 @@ location_corelocation_start(struct location_state *state) state->pipe_fd_read = pipefds[0]; state->pipe_fd_write = pipefds[1]; - pipeutils_signal(state->pipe_fd_write); + write(state->pipe_fd_write, "", 1); state->lock = [[NSLock alloc] init]; @@ -244,7 +243,7 @@ location_corelocation_handle(struct location_state *state, location_t *location, { int error; - pipeutils_handle_signal(state->pipe_fd_read); + read(state->pipe_fd_read, &(char){0}, 1); [state->lock lock]; error = state->error; -- cgit v1.2.3-70-g09d2