aboutsummaryrefslogtreecommitdiff
path: root/src/util
Commit message (Collapse)AuthorAge
...
* -LRN: Wincat:Christian Grothoff2012-06-23
| | | | | | | | | | | I've been experimenting with an alternative non-MSYS buildsystem for a while, and GNUNET_os_start_process() test kept failing due to lack of cat. Wincat is a minimal cat implementation in pure WinAPI. It's not named "cat.exe" to avoid clashing with MSYS cat (which can lead to some very weird issues).
* -LRN: Poisoning:Christian Grothoff2012-06-23
| | | | | | | | | Poisons memory before freeing it. It uses msize() CRT function, which (i believe) is not available on other platforms. This patch was intended to make the output of the next patch (see below) more apparent.
* -LRN: Better process termination for W32:Christian Grothoff2012-06-23
| | | | | | | Avoids spewing warnings about killing processes that are already dead. Also removes a FIXME.
* -LRN: Support [] (formatted to be pid) in logfile names:Christian Grothoff2012-06-23
| | | | | | | | | I needed it for mesh debugging. Wrote this patch before your log rotation changes, and had to hastily adapt it after them, so i'm not sure it actually works. Did some quick tests on it, and it appears to be working, so i'll just send it to you as is, and see how it turns out.
* -LRN: Lock the output on W32:Christian Grothoff2012-06-23
| | | | | | | | | Purely W32 patch. It was needed for some threading-related debugging i did for select() wrapper. Shouldn't harm to have it, in case i do logging from multiple threads again.
* -LRN: Change logskipping to use functions only:Christian Grothoff2012-06-23
| | | | | | | | Remember these weird "skip_log" functions in my gdb backtraces? I hope that this patch will get rid of them. Shouldn't affect existing uses of the API.
* -fixChristian Grothoff2012-06-23
|
* -fix #2122 and #2035Christian Grothoff2012-06-22
|
* -compilation issueChristian Grothoff2012-06-22
|
* -print use shortened unixpath also when connecting...Christian Grothoff2012-06-22
|
* -print switch targetChristian Grothoff2012-06-22
|
* -fixing #2439Christian Grothoff2012-06-20
|
* adding API for parsing absolute timeChristian Grothoff2012-06-19
|
* -handle errorChristian Grothoff2012-06-19
|
* - unusedMatthias Wachs2012-06-15
|
* -dceChristian Grothoff2012-06-15
|
* -remove duplicate setsockopt calls; GNUNET_NETWORK_socket_bind does those ↵Christian Grothoff2012-06-15
| | | | already anyway
* -LRN: implement get_handle_from_native for W32Christian Grothoff2012-06-14
|
* -special treatment for ./binaray-nameChristian Grothoff2012-06-14
|
* -special treatment for ./binaray-nameChristian Grothoff2012-06-14
|
* -check for NULLChristian Grothoff2012-06-14
|
* -needing yet another API to box stdin for scheduler reading, not ported to ↵Christian Grothoff2012-06-14
| | | | W32 yet
* fix for segfaultMatthias Wachs2012-06-14
|
* -LRN: fix binary checker to use proper APIChristian Grothoff2012-06-14
|
* -fixing #2153, code clean up in container_meta_data.cChristian Grothoff2012-06-13
|
* -cleaning up VERBOSE and check nonsense in util testsChristian Grothoff2012-06-13
|
* -LRN: fix r21946 to work on W32Christian Grothoff2012-06-13
|
* -LRN: typoChristian Grothoff2012-06-13
|
* -fixes and cleanupChristian Grothoff2012-06-13
|
* -minor optimizationChristian Grothoff2012-06-13
|
* -fixing #2240, untested on W32Christian Grothoff2012-06-13
|
* -consistently use struct GNUNET_HashCodeChristian Grothoff2012-06-12
|
* LRN: new utf8 argv converter for W32, converting strings on command-line to ↵Christian Grothoff2012-06-10
| | | | UTF-8 for all command-line tools.
* LRN: fix RAND_MAX on W32:Christian Grothoff2012-06-10
| | | | | MinGW stdlib.h defines it to 0x7FFF, but our implementation is better.
* -LRN: fix mkdtemp on W32Christian Grothoff2012-06-10
|
* -integrate mkdirp with testingChristian Grothoff2012-06-10
|
* -slightly better in case free/strdup'd value is aliasedChristian Grothoff2012-06-10
|
* -use human-readable error messageChristian Grothoff2012-06-09
|
* -fixing #2405Christian Grothoff2012-06-07
|
* LRN: new select wrapper for W32 which avoids busy-waitingChristian Grothoff2012-06-07
|
* #2404, patch 02: include sys/vfs on GNUChristian Grothoff2012-06-04
|
* -LRN: fix a warningChristian Grothoff2012-06-03
|
* -fixChristian Grothoff2012-06-02
|
* -hopefully fixing #2390Christian Grothoff2012-06-02
|
* -hopefully fixing #2390Christian Grothoff2012-06-02
|
* LRN: Update plibc and utf8izationChristian Grothoff2012-06-02
|
* -bump versionsChristian Grothoff2012-06-01
|
* -fix syntax problem for Java parserChristian Grothoff2012-06-01
|
* -unnecessary code eliminationChristian Grothoff2012-06-01
|
* -bratao: there is one little innofensive patch. ↵Christian Grothoff2012-06-01
| | | | http://pastebin.com/iRharWUm , On W32 we waiting 10 microseconds on the select, and its completely unecessary. Some tests are 30% faster to me.