Changeset abb12f in git for Singular/links/ssiLink.cc
- Timestamp:
- Nov 8, 2013, 5:40:43 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 70b3ae0102981cd252f90101eaae430e561b8335
- Parents:
- 1b67251e4a873733c02ccc815041eedc24741797bf60110df1fa419b30f99931324a3f93e540bb71
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/links/ssiLink.cc
r1b6725 rabb12f 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.