Changeset 8265677 in git
- Timestamp:
- Nov 20, 2013, 4:28:07 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '1d362c315e551a5b527ab0759f8839cf0e94f3a5')
- Children:
- 9aa61ab499a2001f8d1e5112b9908742b2f69659
- Parents:
- 3fd3f31590cf8b9f431551f3e01e9e7d80ab6bcf
- git-author:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-11-20 16:28:07+01:00
- git-committer:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-11-20 16:30:20+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/links/ssiLink.cc
r3fd3f3 r8265677 1139 1139 struct timespec t; 1140 1140 t.tv_sec=0; 1141 t.tv_nsec= 50000000; // <=50 ms1141 t.tv_nsec=100000000; // <=100 ms 1142 1142 int r=si_nanosleep(&t,NULL); 1143 1143 if((r==0) && (si_waitpid(d->pid,NULL,WNOHANG)==0)) 1144 1144 { 1145 1145 kill(d->pid,15); 1146 t.tv_sec= 0;1147 t.tv_nsec= 10000000; // <=10 ms1146 t.tv_sec=5; // <=5s 1147 t.tv_nsec=0; 1148 1148 r=si_nanosleep(&t,NULL); 1149 1149 if((r==0)&&(si_waitpid(d->pid,NULL,WNOHANG)==0))
Note: See TracChangeset
for help on using the changeset viewer.