summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1620 from trustable-code/PR6Andreas Rumpf2014-11-031-7/+15
|\ | | | | Fix terminate() and add kill()
| * Fix terminate() and add kill()Simon Krauter2014-11-021-7/+15
| |
* | Fix math.nim on windowsVarriount2014-11-031-1/+1
| |
* | Merge pull request #1443 from def-/future-listcomprehensionsAndreas Rumpf2014-11-031-0/+57
|\ \ | | | | | | Add list comprehensions to future module
| * | Extend list comprehension documentationdef2014-08-031-16/+20
| | |
| * | Add list comprehensions to future moduledef2014-08-031-0/+53
| | |
* | | Merge pull request #1553 from gradha/pr_json_module_improvementsAndreas Rumpf2014-11-031-91/+540
|\ \ \ | | | | | | | | json module improvements
| * | | Hides TJsonError, it wasn't being used.Grzegorz Adam Hankiewicz2014-10-041-1/+1
| | | |
| * | | Documents json module.Grzegorz Adam Hankiewicz2014-10-041-90/+539
| | | |
* | | | Merge pull request #1448 from def-/posix-mathAndreas Rumpf2014-11-033-53/+113
|\ \ \ \ | | | | | | | | | | Add -lm for fesetround and fegetround
| * | | | Move fenv to its own moduledef2014-08-222-54/+113
| | | | |
| * | | | Move floating point rounding and exceptions handling to mathdef2014-08-062-45/+43
| | | | | | | | | | | | | | | | | | | | (it's C99 as well, not just POSIX)
| * | | | Add -lm for fesetround and fegetrounddef2014-08-051-0/+3
| | |/ / | |/| |
* | | | Merge pull request #1565 from gradha/pr_supports_nnkPostfix_stringificationAndreas Rumpf2014-11-031-1/+5
|\ \ \ \ | |_|_|/ |/| | | Adds stringification support for nnkPostfix nodes.
| * | | Adds stringification support for nnkPostfix nodes.Grzegorz Adam Hankiewicz2014-10-111-1/+5
| | |/ | |/|
* | | Various atomics fixes for gcc/clang.Reimer Behrends2014-10-301-21/+27
| | | | | | | | | | | | | | | | | | Make atomicInc/atomicDec work with clang, too; also, actually import the memory model constants from C rather than relying on the enum matching the C constants by happenstance.
* | | Add comment.Milos Negovanovic2014-10-211-1/+2
| | |
* | | Add comment.Milos Negovanovic2014-10-211-0/+1
| | |
* | | Merge branch 'devel' of github.com:Araq/Nimrod into develMilos Negovanovic2014-10-215-12/+37
|\ \ \
| * | | 2nd attempt to fix tryRecvAraq2014-10-201-1/+1
| | | |
| * | | fixes tryRecvAraq2014-10-201-3/+4
| | | |
| * | | Merge pull request #1564 from trustable-code/develAndreas Rumpf2014-10-121-0/+2
| |\ \ \ | | | | | | | | | | Raise exception on adding a non-existent file to a zip archive
| | * | | Code more cleanerSimon Krauter2014-10-111-4/+1
| | | | |
| | * | | Raise exception on adding a non-existent file to a zip archiveSimon Krauter2014-10-101-0/+5
| | |/ /
| * | | fixes recent regressionAraq2014-10-111-1/+4
| | | |
| * | | minor cleanup for cpuinfoAraq2014-10-111-2/+1
| | | |
| * | | fixes #1551Araq2014-10-111-3/+3
| | | |
| * | | Update cpuinfo.nimLuis Ricardo2014-10-071-1/+8
| |/ / | | | | | | | | | sys/types.h needed for macosx and freebsd sys/param.h needed for openbsd and netbsd
| * | Merge pull request #1545 from rbehrends/setjmp-perfAndreas Rumpf2014-10-021-4/+17
| |\ \ | | | | | | | | Improve setjmp()/longjmp() performance.
| | * | Improve setjmp()/longjmp() performance.Reimer Behrends2014-09-251-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception handling for the C backend used setjmp()/longjmp() unconditionally. However, on POSIX systems, these functions save and restore the signal mask, adding considerable overhead to exception handling, even where no exceptions are involved. The compiler and library now try to use either _setjmp()/_longjmp() or sigsetjmp()/siglongjmp() where possible, marked by the defines "nimRawSetjmp" and "nimSigSetjmp", respectively. The define "nimStdSetjmp" can be used to revert to setjmp()/longjmp() instead.
* | | | Tweaks for postgres driver (not tested yet).Milos Negovanovic2014-09-261-2/+8
| | | |
* | | | Merge branch 'devel' of github.com:Araq/Nimrod into develMilos Negovanovic2014-09-261-2/+2
|\| | | | | | | | | | | | | | | Merging mainline devel.
| * | | Fix permissions for createDir() on Unix systems.Reimer Behrends2014-09-221-2/+2
| |/ / | | | | | | | | | | | | Permissions were set to 0o711 by default; they should be 0o777, with umask being responsible for restricting permissions further.
* | | Merge branch 'devel' of github.com:Araq/Nimrod into develMilos Negovanovic2014-09-1916-190/+620
|\| | | | | | | | | | | Merging mainline devel.
| * | Merge pull request #1507 from idlewan/postgresqlAndreas Rumpf2014-09-192-28/+86
| |\ \ | | | | | | | | Add postgresql prepared queries
| | * | Add postgresql prepared queries and stop relying on string formattingErwan Ameil2014-08-292-28/+86
| | | | | | | | | | | | | | | | for sql parameter passing
| * | | Various fixes to how the Boehm GC's interface.Reimer Behrends2014-09-181-10/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The Boehm GC interface did not define the getXXXSharedMem() functions that were needed for compilation with --threads:on. It also used `ppointer` instead of `PPointer`, so it failed to compile with --cs:partial.
| * | | manual merge of #1526Araq2014-09-111-1/+1
| | | |
| * | | Threads work againAraq2014-09-111-32/+46
| | | |
| * | | fixes #1444Araq2014-09-112-3/+3
| | | |
| * | | Merge pull request #1404 from def-/strutils-countAndreas Rumpf2014-09-051-0/+35
| |\ \ \ | | | | | | | | | | Add count procedures to strutils
| | * | | overlapping as a parameter for count insteaddef2014-07-281-17/+9
| | | | |
| | * | | Add count procedures to strutilsdef2014-07-231-0/+43
| | | | |
| * | | | Merge pull request #1514 from fuzzthink/develSimon Hafner2014-09-021-2/+2
| |\ \ \ \ | | | | | | | | | | | | Pointer -> pointer to fix compile error using --cs:partial
| | * | | | Pointer -> pointer to fix compile error using --cs:partialfuzzthink2014-09-021-2/+2
| | | | | |
| * | | | | Merge pull request #1509 from idlewan/cookiesAndreas Rumpf2014-09-011-6/+9
| |\ \ \ \ \ | | | | | | | | | | | | | | Secure and HttpOnly cookies
| | * | | | | Secure and HttpOnly cookiesErwan Ameil2014-08-301-6/+9
| | | | | | |
| * | | | | | Escape ' and / when using escape in xmltreeErwan Ameil2014-08-301-0/+4
| |/ / / / /
| * | | | | Add asyncftpclient module.Dominik Picheta2014-08-293-14/+315
| | | | | |
| * | | | | Async macro fixes. Added waitFor.Dominik Picheta2014-08-291-7/+17
| | |_|/ / | |/| | |