Changeset 3641
- Timestamp:
- May 18, 2008, 2:11:03 PM (17 years ago)
- Location:
- trunk/libc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libc/include/InnoTekLIBC/sharedpm.h ¶
r2937 r3641 697 697 698 698 /** 699 * Wait for a embryo to become a live process and complete 700 * inheriting (file handles / sockets issues). 701 * 702 * @returns non-zero if the process has started. 703 * @param pEmbryo The embry process. 704 */ 705 int __libc_spmWaitForChildToBecomeAlive(__LIBC_PSPMPROCESS pEmbryo); 706 707 /** 699 708 * Searches for a process given by pid. 700 709 * -
TabularUnified trunk/libc/src/kNIX/os2/__spawnve.c ¶
r3635 r3641 531 531 * If we figure that it's a libc child, we can wait a good deal longer. 532 532 */ 533 /** @todo add a SPM notification for when inherit is completed. */ 534 __LIBC_SPMLOADAVG LoadAvg; 535 unsigned uLoadAvgTS; 536 int fDoneInherit; 537 ULONG ulStart = fibGetMsCount(); 538 rc = 0; 539 while ( (fDoneInherit = pEmbryo->enmState >= __LIBC_PROCSTATE_ALIVE 540 || (pEmbryo->pInherit == NULL && pEmbryo->pInheritLocked == NULL) 541 ) == 0 542 && fibGetMsCount() - ulStart <= 8) 543 { 544 DosSleep(rc++ > 4); 545 __libc_spmGetLoadAvg(&LoadAvg, &uLoadAvgTS); /* SMP HACK */ 546 } 547 if ( !fDoneInherit 548 && pEmbryo->enmState == __LIBC_PROCSTATE_ALIVE) 549 { 550 LIBCLOG_MSG("libc child - wait some more (rc=%d)\n", rc); 551 rc = 0; 552 __libc_spmGetLoadAvg(&LoadAvg, &uLoadAvgTS); /* SMP HACK */ 553 while ( (fDoneInherit = pEmbryo->enmState >= __LIBC_PROCSTATE_ALIVE 554 || (pEmbryo->pInherit == NULL && pEmbryo->pInheritLocked == NULL) 555 ) == 0 556 && fibGetMsCount() - ulStart <= 100) 557 { 558 DosSleep(rc++ > 4); 559 __libc_spmGetLoadAvg(&LoadAvg, &uLoadAvgTS); /* SMP HACK */ 560 } 561 } 562 LIBCLOG_MSG("fDoneInherit=%d rc=%d enmState=%d inh=%p,%p - waited %d ms\n", 563 fDoneInherit, rc, pEmbryo->enmState, pEmbryo->pInherit, pEmbryo->pInheritLocked, fibGetMsCount() - ulStart); 533 int fDoneInherit = __libc_spmWaitForChildToBecomeAlive(pEmbryo); 534 LIBCLOG_MSG("fDoneInherit=%d enmState=%d inh=%p,%p\n", 535 fDoneInherit, pEmbryo->enmState, pEmbryo->pInherit, pEmbryo->pInheritLocked); 564 536 565 537 /* … … 634 606 { 635 607 LIBCLOG_MSG("waiting some more...\n"); 636 do 637 { 638 DosSleep(!(rc++ % 3)); 639 __libc_spmGetLoadAvg(&LoadAvg, &uLoadAvgTS); /* SMP HACK */ 640 fDoneInherit = pEmbryo->enmState > __LIBC_PROCSTATE_ALIVE 641 || (pEmbryo->pInherit == NULL && pEmbryo->pInheritLocked == NULL); 642 } while (!fDoneInherit 643 && fibGetMsCount() - ulStart <= 200); 644 LIBCLOG_MSG("fDoneInherit=%d rc=%d enmState=%d inh=%p,%p - waited %d ms\n", 645 fDoneInherit, rc, pEmbryo->enmState, pEmbryo->pInherit, pEmbryo->pInheritLocked, fibGetMsCount() - ulStart); 608 fDoneInherit = __libc_spmWaitForChildToBecomeAlive(pEmbryo); 609 LIBCLOG_MSG("fDoneInherit=%d enmState=%d inh=%p,%p\n", 610 fDoneInherit, pEmbryo->enmState, pEmbryo->pInherit, pEmbryo->pInheritLocked); 646 611 } 647 612 -
TabularUnified trunk/libc/src/kNIX/os2/sharedpm.c ¶
r3373 r3641 25 25 * 26 26 */ 27 27 28 28 29 /** @todo … … 461 462 LIBC_ASSERTM(!gpSPMSelf->pInheritLocked, "Trying to free a locked inherit struct!\n"); 462 463 463 spmReleaseMutex(&RegRec); 464 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 465 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 466 spmReleaseMutex(&RegRec); 467 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 464 468 } 465 469 } … … 596 600 597 601 /** 602 * Wait for a embryo to become a live process and complete 603 * inheriting (file handles / sockets issues). 604 * 605 * @returns non-zero if the process has started. 606 * @param pEmbryo The embry process. 607 */ 608 int __libc_spmWaitForChildToBecomeAlive(__LIBC_PSPMPROCESS pEmbryo) 609 { 610 LIBCLOG_ENTER("pEmbryo=%p\n", pEmbryo); 611 int cLoops; 612 __LIBC_SPMXCPTREGREC RegRec; 613 ULONG ulIgnored; 614 int fAlive = 0; 615 APIRET rc = 0; 616 ULONG ulStart = 0; 617 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &ulStart, sizeof(ulStart)); 618 619 /* 620 * Wait for the process to become ready, 8 ms max. 621 * However, if it becomes alive in that period we know it's a libc 622 * process and will wait a bit more (130 ms) for it to finishing 623 * initialization and inheritance. 624 */ 625 for (cLoops = 0; ; cLoops++) 626 { 627 /* 628 * Reset the notification event sem. 629 */ 630 spmRequestMutex(&RegRec); 631 fAlive = pEmbryo->enmState > __LIBC_PROCSTATE_ALIVE 632 || ( pEmbryo->pInherit == NULL 633 && pEmbryo->pInheritLocked == NULL 634 && pEmbryo->enmState == __LIBC_PROCSTATE_ALIVE); 635 if (!fAlive) 636 DosResetEventSem(gpSPMHdr->hevNotify, &ulIgnored); 637 spmReleaseMutex(&RegRec); 638 if (fAlive) 639 break; /* done */ 640 641 /* 642 * Calc the time we should sleep. 643 */ 644 ULONG ulNow = 0; 645 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &ulNow, sizeof(ulNow)); 646 ULONG ulSleep = ulNow - ulStart; 647 if (ulSleep < 8) 648 { 649 ulSleep = 8 - ulSleep; 650 LIBCLOG_MSG("wait %lu ms (cLoops=%d rc=%ld)\n", ulSleep, cLoops, rc); 651 } 652 else if (pEmbryo->enmState != __LIBC_PROCSTATE_ALIVE) 653 break; /* giving up */ 654 else if (ulSleep < 130) 655 { 656 ulSleep = 130 - ulSleep; 657 if (ulSleep > 8) 658 ulSleep = 8; /* reset race protection */ 659 LIBCLOG_MSG("libc child - wait %lu ms (cLoops=%d rc=%ld)\n", ulSleep, cLoops, rc); 660 } 661 else 662 break; /* giving up */ 663 664 /* 665 * Recheck before going to sleep on the event sem. 666 */ 667 fAlive = pEmbryo->enmState > __LIBC_PROCSTATE_ALIVE 668 || ( pEmbryo->pInherit == NULL 669 && pEmbryo->pInheritLocked == NULL 670 && pEmbryo->enmState == __LIBC_PROCSTATE_ALIVE); 671 if (fAlive) 672 break; /* done */ 673 674 if ( gpSPMHdr->hevNotify 675 && (rc == NO_ERROR || rc == ERROR_TIMEOUT || rc == ERROR_SEM_TIMEOUT)) 676 rc = DosWaitEventSem(gpSPMHdr->hevNotify, ulSleep); 677 else 678 { 679 /* fallback if the sem is busted or for old libc initializing spm. */ 680 DosSleep(cLoops > 8); 681 682 __LIBC_SPMLOADAVG LoadAvg; /* SPM hack */ 683 __libc_spmSetLoadAvg(&LoadAvg); 684 } 685 } 686 LIBCLOG_RETURN_INT(fAlive); 687 } 688 689 690 /** 598 691 * Searches for a process given by pid. 599 692 * … … 2282 2375 if (!gpSPMHdr->cSigMaxActive) 2283 2376 gpSPMHdr->cSigMaxActive = 1024; 2377 if (gpSPMHdr->hevNotify) 2378 rc = DosOpenEventSem(NULL, &gpSPMHdr->hevNotify); 2379 else 2380 rc = DosCreateEventSem(NULL, &gpSPMHdr->hevNotify, DC_SEM_SHARED, FALSE); 2284 2381 } 2285 2382 else … … 2343 2440 { 2344 2441 /* 2345 * Register the current process and increment open counter. 2442 * Register the current process, increment open counter, 2443 * and notify everyone that spm data has changed. 2346 2444 */ 2347 2445 PLINFOSEG pLIS = GETLINFOSEG(); 2348 2446 spmRegisterSelf(pPib->pib_ulpid, pPib->pib_ulppid, pLIS->sgCurrent); 2349 2447 if (gpSPMSelf) 2448 { 2350 2449 gpSPMSelf->cSPMOpens++; 2450 2451 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 2452 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 2453 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 2454 } 2351 2455 2352 2456 /* … … 2529 2633 *pParent->ppChildNotifyTail = pTerm; 2530 2634 pParent->ppChildNotifyTail = &pTerm->pNext; 2531 DosPostEventSem(gpSPMHdr->hevNotify); 2635 2636 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 2637 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 2638 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 2532 2639 } 2533 2640 else … … 3151 3258 3152 3259 /* post notification sem. */ 3153 DosPostEventSem(gpSPMHdr->hevNotify); 3260 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 3261 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 3262 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 3154 3263 } 3155 3264 else … … 3353 3462 spmFreeProcess(pProcess); 3354 3463 pProcess = pProcessNext; 3464 3465 /* Wake up the embryo waiters (paranoia). */ 3466 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 3467 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 3468 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 3355 3469 continue; 3356 3470 } … … 3444 3558 spmFreeProcess(pProcess); 3445 3559 pProcess = pProcessNext; 3560 3561 /* Wake up the embryo waiters (paranoia). */ 3562 LIBCLOG_MSG("posting %#lx\n", gpSPMHdr->hevNotify); 3563 APIRET rc2 = DosPostEventSem(gpSPMHdr->hevNotify); 3564 LIBC_ASSERTM(!rc2, "rc2=%ld!\n", rc2); rc2 = rc2; 3446 3565 continue; 3447 3566 }
Note:
See TracChangeset
for help on using the changeset viewer.