diff options
Diffstat (limited to 'src/location-corelocation.m')
-rw-r--r-- | src/location-corelocation.m | 21 |
1 files changed, 10 insertions, 11 deletions
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 <jonlst@gmail.com> + * Copyright (c) 2014-2016, 2025 Mattias Andrée <m@maandree.se> * * 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 <http://www.gnu.org/licenses/>. - * - * Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> - * Copyright (c) 2025 Mattias Andrée <m@maandree.se> */ #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; |