aboutsummaryrefslogtreecommitdiff
path: root/src/util
Commit message (Collapse)AuthorAge
...
* fix misc compiler warningsChristian Grothoff2018-01-04
|
* fix more warningsChristian Grothoff2018-01-04
|
* trying again to fix test_service timeout on v6 failureChristian Grothoff2018-01-04
|
* fix timeout of test_service, misc signed/unsigned and unused argument issuesChristian Grothoff2018-01-04
|
* Merge remote-tracking branch 'origin/identity_abe'Schanzenbach, Martin2018-01-04
|\
| * -move abe functionality out of util; prepare for releaseSchanzenbach, Martin2018-01-03
| |
| * -mergeSchanzenbach, Martin2018-01-02
| |\
| * \ Merge remote-tracking branch 'origin/master' into identity_abeSchanzenbach, Martin2017-12-02
| |\ \
| * | | -bugfixes, fix memleaksSchanzenbach, Martin2017-10-10
| | | |
| * | | -mem fixes, revocation finishSchanzenbach, Martin2017-10-07
| | | |
| * | | Merge remote-tracking branch 'origin/master' into identity_abeSchanzenbach, Martin2017-10-05
| |\ \ \
| * | | | -various fixes; add attribute list APISchanzenbach, Martin2017-09-16
| | | | |
| * | | | Merge remote-tracking branch 'origin/master' into identity_abeSchanzenbach, Martin2017-08-03
| |\ \ \ \
| * | | | | -change to gabe bswabe forkSchanzenbach, Martin2017-07-14
| | | | | |
| * | | | | -fixesSchanzenbach, Martin2017-07-09
| | | | | |
| * | | | | -fixSchanzenbach, Martin2017-07-09
| | | | | |
| * | | | | -fix leaksSchanzenbach, Martin2017-07-09
| | | | | |
| * | | | | -add free ABE functionsSchanzenbach, Martin2017-07-09
| | | | | |
| * | | | | -fixSchanzenbach, Martin2017-07-09
| | | | | |
| * | | | | -fix apiSchanzenbach, Martin2017-07-08
| | | | | |
| * | | | | -add serializationSchanzenbach, Martin2017-07-08
| | | | | |
| * | | | | -add ABE crypto moduleSchanzenbach, Martin2017-07-08
| | | | | |
* | | | | | Fix double-scheduling of shutdown taskDavid Barksdale2018-01-02
| |_|_|_|/ |/| | | |
* | | | | Fix memory leak in select_loopDavid Barksdale2018-01-01
| | | | |
* | | | | fix GNUNET_TIME_year_to_time, do not start in February...Christian Grothoff2018-01-01
| | | | |
* | | | | merge branch 'refactoring-scheduler'lurchi2017-12-30
|\ \ \ \ \
| * | | | | cleanuplurchi2017-09-04
| | | | | |
| * | | | | Fix select loop running conditionslurchi2017-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The select loop has to keep running as long as the driver has tasks available (indicating that there are file descriptors left to wait for) or the timeout is not FOREVER (indicating that the scheduler has tasks with timeout left).
| * | | | | handles, not handlerslurchi2017-09-04
| | | | | |
| * | | | | remove scheduler->internal code from driver looplurchi2017-09-04
| | | | | |
| * | | | | Remove busy waiting checkslurchi2017-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Busy waiting should never happen (at least the shutdown pipe is always there for the driver to wait for). When busy waiting happens, i.e. GNUNET_SCHEDULER_run_from_driver is called without any task ready, it is a programming error (at least I don't know any valid use case for busy waiting). Hence, remove the busy waiting checks and let GNUNET_SCHEDULER_run_from_driver return GNUNET_SYSERR instead in this case.
| * | | | | clarify documentation about adding / deleting taskslurchi2017-08-25
| | | | | |
| * | | | | Simplify driver callback del; fix shutdown logiclurchi2017-08-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The driver callback for deleting a task has been simplified: Now it is only possible to delete a task, not single FdInfos. A logic bug in GNUNET_SCHEDULER_cancel has been fixed (FD-related tasks need to be deleted from the driver, when they are already in the ready queue).
| * | | | | fix behaviour of GNUNET_SCHEDULER_add_select on empty fdsetslurchi2017-08-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if GNUNET_SCHEDULER_add_select is called with empty fdsets, the resulting task is now added to the pending_timeout queue instead of the pending queue. This way the driver will not know about the task.
| * | | | | NULL-initialize array pointerslurchi2017-08-24
| | | | | |
| * | | | | cleanuplurchi2017-08-23
| | | | | |
| * | | | | GNUNET_SCHEDULER_check_lifeness not needed anymorelurchi2017-08-23
| | | | | |
| * | | | | tasks in the pending queue must be be checked for reached timeouts, too; ↵lurchi2017-08-23
| | | | | | | | | | | | | | | | | | | | | | | | allow multiple event types per FdInfo
| * | | | | only allocate network / file handles and store them in the task when ↵lurchi2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | GNUNET_SCHEDULER_add_select is used
| * | | | | implement bookkeeping about which FDs related to a tasks have been marked ↵lurchi2017-08-18
| | | | | | | | | | | | | | | | | | | | | | | | ready (required API change in GNUNET_SCHEDULER_task_ready)
| * | | | | increasing length variable is already done by GNUNET_xgrow_ (called by the ↵lurchi2017-08-17
| | | | | | | | | | | | | | | | | | | | | | | | GNUNET_array_append macro)
| * | | | | add buggy state of refactored GNUNET_SCHEDULER_add_selectlurchi2017-08-16
| | | | | |
| * | | | | reimplement init_fd_info as preparation for refactoring ↵lurchi2017-08-13
| | | | | | | | | | | | | | | | | | | | | | | | GNUNET_SCHEDULER_add_select
| * | | | | fix off-by-one error that prevented reading from stdinlurchi2017-08-12
| | | | | |
| * | | | | init_fd_info now completely initializes fd information; Allow calling ↵lurchi2017-08-12
| | | | | | | | | | | | | | | | | | | | | | | | add/cancel functions only when the scheduler is running
| * | | | | set fds_len in all cases; call set_wakeup only in two placeslurchi2017-08-11
| | | | | |
| * | | | | Revert "set fds_len in all cases; call set_wakeup only in two places"lurchi2017-08-11
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 7d42c453fbb032ac8fb43c8e56bb84354ecedf2d.
| * | | | | set fds_len in all cases; call set_wakeup only in two placeslurchi2017-08-11
| | | | | |
| * | | | | remove unnecessary set_wakup calllurchi2017-08-10
| | | | | |
| * | | | | fix compilation of debug code enabled by DEBUG_FDS; fix indentationlurchi2017-08-10
| | | | | |