Changeset 4108 for branches/Grace/src
- Timestamp:
- Aug 29, 2000, 12:44:25 AM (25 years ago)
- Location:
- branches/Grace/src/win32k
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Grace/src/win32k/include/OS2Krnl.h
r3834 r4108 1 /* $Id: OS2Krnl.h,v 1.7.4. 1 2000-07-16 22:43:27bird Exp $1 /* $Id: OS2Krnl.h,v 1.7.4.2 2000-08-28 22:44:22 bird Exp $ 2 2 * 3 3 * OS/2 kernel structures, typedefs and macros. … … 243 243 #endif 244 244 245 #if defined(INCL_OS2KRNL_PTDA) && !defined(INCL_OS2KRNL_SEM) 246 #define INCL_OS2KRNL_SEM 247 #endif 248 245 249 #ifdef INCL_OS2KRNL_IO 246 250 #include <OS2KIO.h> -
branches/Grace/src/win32k/ldr/calltab.asm
r4071 r4108 1 ; $Id: calltab.asm,v 1.12.4. 7 2000-08-23 04:16:43 bird Exp $1 ; $Id: calltab.asm,v 1.12.4.8 2000-08-28 22:44:23 bird Exp $ 2 2 ; 3 3 ; callTab - Call back again table - table with entry for each function or … … 86 86 public ptda_environ_sel 87 87 88 public pptda_ptdasem 89 public ptda_ptdasem_offObject 90 public _fpptda_ptdasem 91 public ptda_ptdasem_sel 92 88 93 public pptda_module 89 94 public ptda_module_offObject … … 320 325 321 326 ; 37 327 pptda_ptdasem dd 0 328 ptda_ptdasem_offObject dd 0 329 _fpptda_ptdasem dd 0 330 ptda_ptdasem_sel dw 0 331 db (MAXSIZE_PROLOG - 14) dup(0cch) 332 333 ; 38 322 334 pptda_module dd 0 323 335 ptda_module_offObject dd 0 … … 326 338 db (MAXSIZE_PROLOG - 14) dup(0cch) 327 339 328 ; 3 8340 ; 39 329 341 pptda_pBeginLIBPATH dd 0 330 342 ptda_pBeginLIBPATH_offObject dd 0 … … 333 345 db (MAXSIZE_PROLOG - 14) dup(0cch) 334 346 335 336 ; 39 347 ; 40 337 348 pldrpFileNameBuf dd 0 338 349 pldrpFileNameBuf_offObject dd 0 -
branches/Grace/src/win32k/ldr/myLDRQAppType.cpp
r4046 r4108 1 /* $Id: myLDRQAppType.cpp,v 1.3.4. 2 2000-08-19 14:37:14 bird Exp $1 /* $Id: myLDRQAppType.cpp,v 1.3.4.3 2000-08-28 22:44:24 bird Exp $ 2 2 * 3 3 * _myLDRQAppType - _LDRQAppType overload. … … 15 15 #define INCL_NOPMAPI 16 16 17 #define INCL_OS2KRNL_PTDA 17 18 #define INCL_OS2KRNL_SEM 18 19 … … 46 47 47 48 kprintf(("myLDRQAppType: entry\n")); 48 49 rc = KSEMRequestMutex(ptda_ptda_ptdasem(ptdaGetCur()), KSEM_INDEFINITE_WAIT); 50 if (rc != NO_ERROR) 51 { 52 kprintf(("myLDRQAppType: failed to get intra-process semaphore.\n")); 53 return rc; 54 } 49 55 rc = LDRRequestSem(); 50 56 if (rc != NO_ERROR) … … 63 69 64 70 LDRClearSem(); 71 KSEMReleaseMutex(ptda_ptda_ptdasem(ptdaGetCur())); 65 72 kprintf(("myLDRQAppType: exit\n")); 66 73 -
branches/Grace/src/win32k/test/fakea.asm
r4090 r4108 1 ; $Id: fakea.asm,v 1.1.4. 5 2000-08-25 04:47:28bird Exp $1 ; $Id: fakea.asm,v 1.1.4.6 2000-08-28 22:44:25 bird Exp $ 2 2 ; 3 3 ; Fake assembly imports. … … 31 31 public fakeptda_environ 32 32 public fakeptda_module 33 public fakeptda_ptdasem 34 public fakeptda_pBeginLIBPATH 33 35 public fakef_FuStrLenZ 34 36 public fakef_FuStrLen … … 60 62 fakeptda_dummy db 123 dup (0) 61 63 fakeptda_environ dw 1 ; 1 is the hardcoded HOB of the win32ktst.exe's environment. 64 fakeptda_ptda_sem db 20 dup (0) ; PTDA semaphore - Intra-Process serialisation mutex KSEM (sg244640). 62 65 fakeptda_module dw 1 ; 1 is the hardcoded HMTE of the current executable module. 63 66 fakeptda_pBeginLIBPATH dd 0 ; BEGINLIBPATH not implemented.
Note:
See TracChangeset
for help on using the changeset viewer.