summary refs log tree commit diff stats
path: root/lib/system
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* fixes #3014Araq2015-06-291-1/+1
|
* proper distinction between --gc:none and --os:standaloneAraq2015-06-293-17/+30
|
* Fix #2672. Do not define globalsSlot for native TLSSergey Avseyev2015-06-261-16/+11
| | | | | | | | | | | | | | | | Motivation ---------- globalsSlot is always defined so threading code works incorrectly when native TLS supported. Modification ------------ Defined globalsSlot only in TLS emulation mode. Remove myThreadId, which based on broken behavior. It might be reimplemented later Result ------ No segfaults.
* Trim trailling spacesSergey Avseyev2015-06-262-39/+37
|
* fixes #2992Araq2015-06-251-4/+4
|
* Merge pull request #2968 from def-/neutral-languagereactormonk2015-06-212-6/+6
|\ | | | | Neutral language
| * Fix typos in commentsdef2015-06-212-6/+6
| |
* | reworked deprecation to retain old procspatrick dw2015-06-191-1/+5
| |