Changeset bf60110 in git for Singular/links/ssiLink.cc
- Timestamp:
- Nov 8, 2013, 1:35:41 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- abb12f44bb1ce32fc8fa27a5f627543824466fce
- Parents:
- 1101a8c509d91a9d258834579976809a01834fd2
- git-author:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-11-08 13:35:41+01:00
- git-committer:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-11-08 15:20:33+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/links/ssiLink.cc
r1101a8 rbf60110 38 38 #include <libpolys/misc/options.h> 39 39 #include <kernel/timer.h> 40 #include <Singular/rlimit.h> 40 41 #include <Singular/subexpr.h> 41 42 #include <Singular/links/silink.h> … … 779 780 pipe(pc); 780 781 pipe(cp); 781 pid_t pid=fork(); 782 pid_t pid = fork(); 783 if (pid == -1 && errno == EAGAIN) // RLIMIT_NPROC too low? 784 { 785 raise_rlimit_nproc(); 786 pid = fork(); 787 } 788 if (pid == -1) 789 { 790 WerrorS("could not fork"); 791 } 782 792 if (pid==0) /*fork: child*/ 783 793 {
Note: See TracChangeset
for help on using the changeset viewer.