Changeset 23892 in vbox for trunk/src/libs
- Timestamp:
- Oct 20, 2009 8:55:51 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53679
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/uxproces.c
r23869 r23892 674 674 while (1) { 675 675 do { 676 #ifdef VBOX677 /*678 * make sure we wait only for child of our group679 * to ensure we do not interfere with RT680 */681 pid = waitpid((pid_t) 0, &status, 0);682 #else683 676 pid = waitpid((pid_t) -1, &status, 0); 684 #endif685 677 } while ((pid_t) -1 == pid && EINTR == errno); 686 678 … … 772 764 while (1) { 773 765 do { 774 #ifdef VBOX775 /*776 * make sure we wait only for child of our group777 * to ensure we do not interfere with RT778 */779 pid = waitpid((pid_t) 0, &status, WNOHANG);780 #else781 766 pid = waitpid((pid_t) -1, &status, WNOHANG); 782 #endif783 767 } while ((pid_t) -1 == pid && EINTR == errno); 784 768 if (0 == pid) break;
Note:
See TracChangeset
for help on using the changeset viewer.