Blob: mainloop-glib.c
Blob id: 042119baf1ada43ac19e9c1b695dcf6a7caa2ed4
Size: 1.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | // SPDX-License-Identifier: LGPL-2.1-or-later /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2018 Intel Corporation * * */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #define _GNU_SOURCE #include <stdio.h> #include <errno.h> #include <unistd.h> #include <stdlib.h> #include <stdbool.h> #include <signal.h> #include <sys/signalfd.h> #include <glib.h> #include "mainloop.h" #include "mainloop-notify.h" #include "io.h" static GMainLoop *main_loop; static int exit_status; void mainloop_init(void) { main_loop = g_main_loop_new(NULL, FALSE); } void mainloop_quit(void) { if (!main_loop) return; g_main_loop_quit(main_loop); mainloop_sd_notify("STOPPING=1"); } void mainloop_exit_success(void) { exit_status = EXIT_SUCCESS; mainloop_quit(); } void mainloop_exit_failure(void) { exit_status = EXIT_FAILURE; mainloop_quit(); } int mainloop_run(void) { if (!main_loop) return -EINVAL; g_main_loop_run(main_loop); g_main_loop_unref(main_loop); main_loop = NULL; mainloop_notify_exit(); return exit_status; } int mainloop_add_fd(int fd, uint32_t events, mainloop_event_func callback, void *user_data, mainloop_destroy_func destroy) { return -ENOSYS; } int mainloop_modify_fd(int fd, uint32_t events) { return -ENOSYS; } int mainloop_remove_fd(int fd) { return -ENOSYS; } int mainloop_add_timeout(unsigned int msec, mainloop_timeout_func callback, void *user_data, mainloop_destroy_func destroy) { return -ENOSYS; } int mainloop_modify_timeout(int fd, unsigned int msec) { return -ENOSYS; } int mainloop_remove_timeout(int id) { return -ENOSYS; } int mainloop_set_signal(sigset_t *mask, mainloop_signal_func callback, void *user_data, mainloop_destroy_func destroy) { return -ENOSYS; } |