Changeset 1535 for trunk/src/win32k/pe2lx/pe2lx.cpp
- Timestamp:
- Nov 1, 1999, 12:57:09 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/pe2lx/pe2lx.cpp
r1467 r1535 1 /* $Id: pe2lx.cpp,v 1. 5 1999-10-27 02:03:01bird Exp $1 /* $Id: pe2lx.cpp,v 1.6 1999-10-31 23:57:09 bird Exp $ 2 2 * 3 3 * Pe2Lx class implementation. Ring 0 and Ring 3 … … 126 126 #include "pe2lx.h" /* Pe2Lx class definitions, ++. */ 127 127 #include <versionos2.h> /* Pe2Lx version. */ 128 #include "yield.h" /* Yield CPU. */ 128 129 129 130 … … 650 651 return rc; 651 652 } 653 Yield(); 652 654 653 655 /* 14.Convert base relocations (fixups). Remember to add the fixup for RegisterPe2LxDll/Exe. */ … … 658 660 return rc; 659 661 } 662 Yield(); 660 663 661 664 /* 15.Make object table. */ … … 674 677 return rc; 675 678 } 679 Yield(); 676 680 677 681 /* 17.Completing the LX header. */ … … 732 736 /* 20.Dump virtual LX-file */ 733 737 dumpVirtualLxFile(); 738 739 Yield(); 734 740 735 741 return NO_ERROR; … … 2157 2163 else /* page++ */ 2158 2164 ulRVAPage += PAGESIZE; 2165 Yield(); 2159 2166 } /* The Loop! */ 2160 2167 … … 2322 2329 if (rc != NO_ERROR) 2323 2330 printErr(("export --> entry loop failed! ul = %d rc = %d\n", ul, rc)); 2331 Yield(); 2324 2332 2325 2333 /* Convert function names to resident names. */ … … 2349 2357 rc = addResName(usOrdinal, psz, ~0UL); 2350 2358 free(psz); 2359 Yield(); 2351 2360 } 2352 2361 if (rc != NO_ERROR)
Note:
See TracChangeset
for help on using the changeset viewer.