summary refs log tree commit diff stats
path: root/lib/pure/osproc.nim
Commit message (Expand)AuthorAgeFilesLines
...
* Change type of `Timeval.tv_sec` to `posix.Time` (#7646)Oscar Nihlgård2018-04-181-1/+1
* osproc: fix double close on POSIX (#5724)Michał Zieliński2018-04-161-6/+14
* Fix compiler stuck on waiting C/CPP backends. (#7472)Eugene Kabanov2018-04-021-1/+7
* make osproc.execProcesses more robustAndreas Rumpf2018-02-251-2/+2
* Better times module (#6552)GULPF2017-12-181-8/+8
* Fixcheatfate2017-12-131-1/+1
* execProcesses optimization.cheatfate2017-12-121-24/+29
* Windows: Fix invalid handle value for `execProcesses`.cheatfate2017-12-121-7/+11
* Remove `-3` as marker of exited process.cheatfate2017-12-111-41/+77
* merged patch #6876 manually, taking care of poDemonAndreas Rumpf2017-12-111-17/+18
* Merge branch 'nexecProcesses' of https://github.com/cheatfate/Nim into cheatf...Andreas Rumpf2017-12-011-56/+82
|\
| * Explicit array initialization removed.cheatfate2017-11-291-2/+0
| * Fix nimrtl troubles.cheatfate2017-11-281-2/+1
| * Refactored version of execProcesses with test.cheatfate2017-11-281-54/+83
* | osproc improvement: check API consistency in order to prevent bug #6820Araq2017-11-281-0/+8
|/
* Move quoteShell to ospaths (#6794)Fredrik Høisæther Rasch2017-11-241-65/+3
* Trim remaining expr/stmt from stdlib (#6742)Lynn C. Rees2017-11-151-1/+1
* Fix path for sh on Android (#6661)Fredrik Høisæther Rasch2017-11-031-1/+3
* osproc.execProcesses: enable poParentStreams for posix; should make travis gr...Andreas Rumpf2017-10-261-1/+1
* osproc on Windows: fix peekExitCode for closed processesAraq2017-10-251-0/+2
* osproc: fixes a memory leak affecting WindowsAraq2017-09-301-7/+7
* fixes #1734, fixes #3138, fixes #3759araq2017-09-011-14/+17
* Introduce first class support for Android (#5772)Fredrik Høisæther Rasch2017-08-061-1/+2
* Fix posix_spawn error handling (#5826)Ruslan Mustakov2017-05-171-4/+1
* Deprecate osproc.select(). Refs #90.Dominik Picheta2017-05-091-1/+5
* WIFSIGNALED means process has exited too (with a bang!) (#5678)Jacek Sieka2017-04-271-9/+33
* Fix osproc.peekExitCode() to handle exitcode properly. (#5555)Eugene Kabanov2017-03-171-14/+12
* Fixes to support Dragonfly BSD. (#5552)Eugene Kabanov2017-03-171-3/+3
* fixes #5179Araq2017-01-071-4/+5
* make sure first call to running() after process exit returns falseJohannes Hofmann2016-12-031-4/+10
* check waitpid() return value before setting exitStatusJohannes Hofmann2016-12-021-1/+1
* better error handling for osproc.nimAndreas Rumpf2016-11-051-1/+5
* One more attempt to fix #4867cheatfate2016-10-211-1/+3
* convert exitStatus to exit codeJohannes Hofmann2016-09-301-3/+3
* another attempt at properly declaring the status variableJohannes Hofmann2016-09-251-1/+3
* make status variable localJohannes Hofmann2016-09-251-2/+1
* rename exitCode to exitStatusJohannes Hofmann2016-09-241-18/+18
* generally update exitCode only after successful completion of waitpid()Johannes Hofmann2016-09-221-23/+26
* reset p.exitCode in peekExitCode on Posix when process did not exit (#4793)Johannes Hofmann2016-09-171-1/+3
* Add warning to `osproc.close`Dominik Picheta2016-07-211-1/+5
* Fix environment handling in startProcessDmitry Polienko2016-07-191-6/+9
* Revert changes in osproc.nimDmitry Polienko2016-07-191-43/+6
* Fix passing environment in startProcess (win)Dmitry Polienko2016-07-181-6/+43
* prepare Nim codebase for upcoming parser changesAndreas Rumpf2016-07-151-1/+1
* installer fixes and improvementsAndreas Rumpf2016-06-071-3/+3
* Resolve bugscheatfate2016-05-241-2/+2
* Resolve #4200cheatfate2016-05-241-12/+165
* Revert raiseOSError changedef2016-02-061-2/+1
* Fix a few deprecation warningsdef2016-01-251-2/+3
* Only use execvpe on linux, execvp elsewhere (fixes #3759)def2016-01-241-8/+7
='n594' href='#n594'>594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975