summaryrefslogtreecommitdiff
path: root/accel-pppd/triton
AgeCommit message (Collapse)Author
2014-07-11triton: fix possible raceDmitry Kozlov
2014-07-11triton: fix possible raceDmitry Kozlov
2013-08-15triton: do not call context close if it is marked as need free (f.e. context ↵Dmitry Kozlov
already called triton_context_unregister)
2013-07-24triton: Fix race upon terminationGuillaume Nault
The triton_terminate() function works by setting the need_close flag of each triton context, then queues this context for execution by a triton thread if not already running. But if the context is already being run by a triton thread, it may not notice that its need_close flag has been updated (this flag is only checked at the beginning of ctx_thread()). So if no other event wakes up that context (i.e. if ctx_thread() isn't run again), it will never terminate. This patch moves the need_close flag check at the end of ctx_thread() so that a triton context can take the need_close flag into account event if it's updated while running. The context spinlock is also used to protect the need_close flag as it is concurrently updated by triton_terminate(). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2013-06-30mempool: set/check magic only if MEMDEBUG definedDmitry Kozlov
2012-12-26cmake: use CMAKE_FIND_ROOT_PATH and LIB_SUFFIXKozlov Dmitry
2012-12-14Fix va_end() missing callsGuillaume Nault
A few va_start() calls aren't followed by their corresponding va_end(). This patch adds the missing va_end() calls. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2012-11-20chap-secrets: implemented encryptionKozlov Dmitry
2012-11-16ippool: fixed initialization orderKozlov Dmitry
2012-09-05Add compilation checks for printf-style format stringsGuillaume Nault
Append the format() __attribute__ to function prototypes which use a format string. This allows GCC to check for consistency between the format string and its arguments when these functions are called. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2012-08-27fix various typosKozlov Dmitry
2012-07-30make worker stack size configurableKozlov Dmitry
2012-06-21fixed race on terminationKozlov Dmitry
2012-02-27core: increase stack sizeKozlov Dmitry
2012-02-02fix load module orderKozlov Dmitry
2012-01-16core: fix context unregister bugKozlov Dmitry
2011-12-27core: queue zero-priority context if number of threads is reached maximumKozlov Dmitry
2011-12-27implemented logging to system loggerKozlov Dmitry
2011-12-27Revert "implemented logging to system logger"Kozlov Dmitry
This reverts commit ee41cba691ab9f6461f4933461cf82be161333de.
2011-12-27implemented logging to system loggerKozlov Dmitry
2011-12-09core: increase worker thread stack sizeKozlov Dmitry
2011-08-24radius: better radius server fails handlingKozlov Dmitry
2011-08-19snmp supportKozlov Dmitry
2011-05-30rewrited initialization procedure (fix gcc-4.6 builds)Kozlov Dmitry
2011-05-30set PTHREAD_STACK_MIN stack size for threadsKozlov Dmitry
2011-05-24fixed segfault at daemon terminationKozlov Dmitry
2011-03-05bugfixDmitry Kozlov
2011-01-28fix unterminated messages in core.logKozlov Dmitry
2011-01-26dynamicaly check if radius module loaded (so not more require to rebuild ↵Dmitry Kozlov
project without RADIUS to switch to chap-secrets)
2011-01-26futher memory usage optimizationDmitry Kozlov
2011-01-17memory usage optimizationDmitry Kozlov
2011-01-05rename accel-pptp to accel-pppDmitry Kozlov