X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Finclude%2Fgnunet_os_lib.h;h=285dfb68ded7af2577d27ac6ea8515ab4a6ee259;hb=6e626937fd5133188d2bd06f280a1b889219eef2;hp=5785bd67fc3defbe1a467bed1b50f41e3966e5ca;hpb=1d3dc794d9a5e82375995af14e91668430a31293;p=oweals%2Fgnunet.git diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h index 5785bd67f..285dfb68d 100644 --- a/src/include/gnunet_os_lib.h +++ b/src/include/gnunet_os_lib.h @@ -2,20 +2,20 @@ This file is part of GNUnet. Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2011 GNUnet e.V. - GNUnet is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 3, or (at your - option) any later version. + GNUnet is free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, + or (at your option) any later version. GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . - You should have received a copy of the GNU General Public License - along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. + SPDX-License-Identifier: AGPL3.0-or-later */ /** @@ -240,6 +240,13 @@ struct GNUNET_OS_ProjectData */ const char *env_varname_alt; + /** + * Name of an environment variable that can be used to override + * the location from which default configuration files are loaded + * from, for example "GNUNET_BASE_CONFIG". + */ + const char *base_config_varname; + /** * E-mail address for reporting bugs. */ @@ -255,6 +262,11 @@ struct GNUNET_OS_ProjectData */ const char *config_file; + /** + * Configuration file name to use (if $XDG_CONFIG_HOME is not set). + */ + const char *user_config_file; + }; @@ -369,7 +381,8 @@ GNUNET_OS_process_current (void); * @return 0 on success, -1 on error */ int -GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig); +GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, + int sig); /** @@ -512,7 +525,8 @@ struct GNUNET_OS_CommandHandle; * @param cls closure * @param line line of output from a command, NULL for the end */ -typedef void (*GNUNET_OS_LineProcessor) (void *cls, const char *line); +typedef void +(*GNUNET_OS_LineProcessor) (void *cls, const char *line); /** @@ -536,13 +550,15 @@ GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd); * @return NULL on error */ struct GNUNET_OS_CommandHandle * -GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls, - struct GNUNET_TIME_Relative timeout, const char *binary, +GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, + void *proc_cls, + struct GNUNET_TIME_Relative timeout, + const char *binary, ...); /** - * Retrieve the status of a process, waiting on him if dead. + * Retrieve the status of a process, waiting on it if dead. * Nonblocking version. * * @param proc pointer to process structure @@ -570,6 +586,22 @@ int GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc); + +/** + * Retrieve the status of a process, waiting on it if dead. + * Blocking version. + * + * @param proc pointer to process structure + * @param type status type + * @param code return code/signal number + * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise + */ +int +GNUNET_OS_process_wait_status (struct GNUNET_OS_Process *proc, + enum GNUNET_OS_ProcessStatusType *type, + unsigned long *code); + + /** * Connects this process to its parent via pipe; * essentially, the parent control handler will read signal numbers