summary refs log tree commit diff stats
path: root/lib/system
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3345 from rbehrends/no-unmapAndreas Rumpf2015-09-301-4/+7
|\ | | | | Add option to disable munmap() use in the allocator.
| * Add option to disable munmap() use in the allocator.Reimer Behrends2015-09-181-4/+7
| | | | | | | | | | | | When compiling with '-d:nimAllocNoUnmap', the allocator will not attempt to return large chunks to the OS. For certain allocation behaviors, this can be a significant speedup.
* | NimScript: setCommand takes an optional project filenameAraq2015-09-291-1/+1
|/
* Uint64 to string in pure nim. array[char] to string fixed in vm.Yuriy Glukhov2015-09-141-4/+16
|
* NimScript: make the compiler shut up about effects it doesn't know aboutAraq2015-09-081-0/+5
|
* even better docsAraq2015-09-081-6/+19
|
* Nimscript: documented; 'exec' now produces output immediatelyAraq2015-09-071-30/+99
|
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-0413-387/+387
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* split os into os and ospaths parts; ospaths is available for NimScript; ↵Araq2015-09-041-1/+26
| | | | better NimScript support
* improvements for NimScript supportAraq2015-09-031-2/+2
|
* Merge pull request #3273 from yglukhov/js-copy-fixAndreas Rumpf2015-09-031-9/+5
|\ | | | | Fixed JS copying.
| * Fixed JS copying.Yuriy Glukhov2015-08-311-9/+5
| |
* | Merge pull request #3280 from jlp765/endbAndreas Rumpf2015-09-031-2/+20
|\ \ | | | | | | lib/system/endb.nim bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global
| * | bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global commands.JamesP2015-09-031-2/+20
| |/ | | | | | | | | | | This avoids stepping into the endb code if previous command was single step. Other two changes are trailing spaces removed.
* / Fix readLine handling of long lines.Reimer Behrends2015-08-281-1/+10
|/
* Merge pull request #3251 from jck/msp430Dominik Picheta2015-08-261-0/+2
|\ | | | | add msp430 cpu support
| * add msp430 cpu supportKeerthan Jaic2015-08-261-0/+2
| |
* | make --gc:none work with --threads:onAraq2015-08-261-1/+1
|/
* Merge pull request #3239 from xyz32/develAndreas Rumpf2015-08-251-4/+15
|\ | | | | When reading files, check if the eof flag is set before throwing.
| * remove fileErrorxyz2015-08-251-4/+1
| |
| * Append the readAllBuffer to what was read alreadyxyz2015-08-231-1/+1
| |
| * Use seLen as sugested, and fix typosxyz2015-08-231-3/+2
| |
| * When reading files, check if the eof flag is set before throwing.xyz2015-08-221-4/+19
| |
* | fixes #3245Araq2015-08-252-2/+4
| |
* | Merge pull request #3160 from r-ku/coroutinesAndreas Rumpf2015-08-254-308/+331
|\ \ | | | | | | Coroutines
| * \ Merge branch 'devel' into coroutinesrku2015-08-206-14/+178
| |\ \
| * | | Coroutine support for i386/amd64 platforms unix/windows OSes ↵rku2015-07-314-308/+331
| | | | | | | | | | | | | | | | markAndSweep/refCounting GCs.
* | | | Corrected lib name for macos.Yuriy Glukhov2015-08-251-1/+1
| | | |
* | | | fixes sysio regression for nimscript supportAraq2015-08-241-1/+4
| |_|/ |/| |
* | | Merge pull request #3143 from def-/readline-fasterAndreas Rumpf2015-08-211-54/+30
|\ \ \ | | | | | | | | Improve performance of readLine by using fgets
| * | | Improve readLine to work with strings containing \0 again.def2015-07-251-5/+15
| | | | | | | | | | | | | | | | This decreases performance slightly.
| * | | No need to set trailing \0def2015-07-241-7/+4
| | | |
| * | | Improve performance of readLine by using fgetsdef2015-07-241-54/+23
| | | | | | | | | | | | | | | | This drops compatibility with pure CR line endings of old Mac systems
* | | | Merge pull request #3231 from jangko/develAndreas Rumpf2015-08-211-23/+29
|\ \ \ \ | | | | | | | | | | fixed UTF-16 to UTF-8 conversion in widestrs.nim
| * | | | fixed UTF-16 to UTF-8 conversion in widestrs.nimjangko2015-08-211-6/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the source of problem for issue #3228 also add test for entire range of valid UTF-16 and test for invalid UTF-16 sequence
| * | | | fixed UTF-16 to UTF-8 conversion in widestrs.nimjangko2015-08-201-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | the source of problem for issue #3228 also add test for entire range of valid UTF-16
| * | | | fixed UTF-16 to UTF-8 conversion in widestrs.nimjangko2015-08-201-26/+18
| | |_|/ | |/| | | | | | | | | | the source of problem for issue #3228
* | | | Untyped pointers godegen changed. addr expression fixed.Yuriy Glukhov2015-08-211-9/+10
| | | |
* | | | simplify nimscript.nimAraq2015-08-211-20/+5
| | | |
* | | | preparations for Nimble NimScript integrations; minor cleanupsAraq2015-08-181-0/+27
| | | |
* | | | cleanup destructor building for arrays; still doesn't workAraq2015-08-181-21/+13
|/ / /
* | | implements experimental new config system based on NimScriptAraq2015-08-162-4/+159
| | |
* | | Fixed --debugger:on option. Removed c_line from termios.Yuriy Glukhov2015-08-121-6/+6
| | |
* | | fixes #3080Araq2015-08-021-1/+4
| | |
* | | fixes #3135Araq2015-08-021-3/+3
| | |
* | | Add arm64 support (untested)def2015-07-311-0/+2
| | |
* | | Add powerpc64el support (untested)def2015-07-311-0/+2
| | |
* | | Add Mipsel CPU support (untested)def2015-07-311-0/+2
| |/ |/|
* | fixes #1832Araq2015-07-241-0/+8
|/
* implemented system.pinToCpuAraq2015-07-011-10/+40
|