aboutsummaryrefslogtreecommitdiff
path: root/src/util/os_priority.c
Commit message (Collapse)AuthorAge
* -comments: the world ain't all malepsyc://loupsycedyglgamf.onion/~lynX2018-06-27
|
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* fix misc compiler warningsChristian Grothoff2018-01-04
|
* W32: placate GCC by initializing lsocks_write_fd to NULLРуслан Ижбулатов2017-02-25
| | | | | I've treid to find the path where it is used uninitialized, but failed to find it. Just make GCC shut up.
* W32: Fix wrong format stringsРуслан Ижбулатов2017-02-25
|
* util: add component name to LOG macros; util/client: log incoming message ↵tg(x)2017-02-24
| | | | type/size/source for gnunet-logread
* extending process API to allow obtaining status code in blocking fashionChristian Grothoff2016-10-10
|
* fix potential NPE on shutdownChristian Grothoff2016-06-27
|
* implementing new scheduler shutdown semanticsChristian Grothoff2016-04-30
|
* small API change: do no longer pass rarely needed ↵Christian Grothoff2016-04-09
| | | | GNUNET_SCHEDULER_TaskContext to all scheduler tasks; instead, allow the relatively few tasks that need it to obtain the context via GNUNET_SCHEDULER_get_task_context()
* -fix (C) noticesChristian Grothoff2016-01-19
|
* -indentChristian Grothoff2015-10-18
|
* fix #3869: outdated FSF addressChristian Grothoff2015-06-30
|
* -allow 'years' in time units, indentation and doxygen fixesChristian Grothoff2015-06-18
|
* fixing #3799: only unindex if DB operations succeeded previously in the ↵Christian Grothoff2015-05-29
| | | | first place, and when unindexing do proper shutdown handling
* -bringing copyright tags up to FSF standardChristian Grothoff2015-02-07
|
* making GNUNET_SCHEDULER_cancel() perform in O(1) instead of O(n) to help or ↵Christian Grothoff2014-12-24
| | | | even fully address #3247
* -process in logical orderChristian Grothoff2014-04-07
|
* -doxygen improvementsChristian Grothoff2014-04-07
|
* Allow redirection of STDERR when starting processes.Sree Harsha Totakura2014-02-20
|
* Fix W32 process spawning to use CREATE_NO_WINDOW only when there's no consoleLRN2014-01-08
|
* Remove CREATE_NO_WINDOW flag, allow children to get our consoleLRN2014-01-08
|
* malloc -> newLRN2013-12-19
|
* - doxygenSree Harsha Totakura2013-12-09
|
* -doxygenSree Harsha Totakura2013-12-09
|
* -doxygenfixesChristian Grothoff2013-12-07
|
* - move do_start_process to util/Sree Harsha Totakura2013-11-29
|
* - raise a signal after receiving it from the control pipe by calling the ↵Sree Harsha Totakura2013-11-28
| | | | respective callback registered with GNUNET_SIGNAL_handler_install().
* - change --enable-ll to --enable-supermucSree Harsha Totakura2013-10-12
| | | | | - define a system wide termination signal GNUNET_TERM_SIG. Set this to SIGUSR1 only when building for SuperMUC
* -remove trailing whitespaceChristian Grothoff2013-10-06
|
* -towards addressing #3047, note this causes the code to FTBFSChristian Grothoff2013-09-30
|
* Change console inheritance on W32LRN2013-09-23
| | | | | | This allows std handles to be properly inherited in case when they are console handles (DETACHED_PROCESS completely forbids access to the console and overrides anything)
* -eliminate LISTEN_PID check, silly idea anyway, better to just unset the ↵Christian Grothoff2013-09-09
| | | | LISTEN_FDS after use; also this is needed to make things work with gdb/valgrind/monkey/etc.
* -use GPLv3+ consistentlyChristian Grothoff2013-08-24
|
* -fix loglevelChristian Grothoff2013-07-13
|
* Removed GNUNET_OS_set_process_priority since it's not used.David Barksdale2013-06-23
|
* -fix double close/freeChristian Grothoff2013-06-21
|
* -need to unset control pipe on OSX, check for bad FD in environment variableChristian Grothoff2013-05-22
|
* -no booleanChristian Grothoff2013-04-15
|
* extended the GNUNET_OS_check_helper_binary parameters to do previlege Christian Fuchs2013-04-15
| | | | | | | | | | | | | | checking in windows. To do so, tested binaries must still be supplied with valid commandline arguments, but on windows gnunet will utilize the -d flag to run the programs initialization phase or privileged operations only. In these modes, a program will not enter its mainloop or communicate with the outside. updated relevant function calls gnunet-wide to meet the extended function parameters.
* Silence a warningLRN2013-03-01
|
* It's on stack...LRN2013-02-18
|
* Make pipe sanity check work on W32 tooLRN2013-02-16
|
* Detect bad control pipes earlierLRN2013-02-15
|
* Try to fix process spawningLRN2013-02-15
|
* OopsLRN2013-02-14
|
* Use passed-by-fd pipe to control chilrenLRN2013-02-14
| | | | | | | | | | | | Removes npipe_*() functions. Uses normal GNUnet pipe for child control (the pipe is anonymous on *nix, named-with-unique-name on W32). Also tighten W32 code (close pipes correctly on errors). Remove some FIXME NILS comments. Convert #if MINGW -> #if defined (WINDOWS) in some places. Better start_process() debug logging on W32
* W32: Don't leak stdin/stdout when spawningLRN2013-02-14
| | | | | | If stdin/stdout pipe is provided by us, AND we tell start_process() to pass along our own current stdin/stdout, our current stdin/stdout will be leaked to the child (child will have a copy, but won't know about it).