Changeset 4117 for branches/Grace/src


Ignore:
Timestamp:
Aug 30, 2000, 6:11:33 AM (25 years ago)
Author:
bird
Message:

Corrected more JAVA problems. (now working)
In that case an new function was imported. This wasn't present in SMP Warp 3
kernels, so a not requied, EPT_NOT_REQ, flag was introduced. (But, the
new function turned out to be unneeded.)

Location:
branches/Grace/src/win32k
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/Grace/src/win32k/dev16/d16strat.c

    r4112 r4117  
    1 /* $Id: d16strat.c,v 1.8.4.1 2000-08-29 19:47:00 bird Exp $
     1/* $Id: d16strat.c,v 1.8.4.2 2000-08-30 04:11:26 bird Exp $
    22 *
    33 * d16strat.c - 16-bit strategy routine, device headers, device_helper (ptr)
     
    137137                {
    138138                    rc = R0Init16(pRp);
    139                     fInitTime = FALSE;
    140139                    return rc;
    141140                }
  • branches/Grace/src/win32k/include/OS2Krnl.h

    r4108 r4117  
    1 /* $Id: OS2Krnl.h,v 1.7.4.2 2000-08-28 22:44:22 bird Exp $
     1/* $Id: OS2Krnl.h,v 1.7.4.3 2000-08-30 04:11:30 bird Exp $
    22 *
    33 * OS/2 kernel structures, typedefs and macros.
     
    230230
    231231/*
     232 * Calling convention for Security Helpers.
     233 */
     234#define SECCALL  _System
     235
     236/*
    232237 *
    233238 * Other Kernel Parts
     
    241246    #define INCL_OS2KRNL_PTDA
    242247    #define INCL_OS2KRNL_TCB
     248    #define INCL_OS2KRNL_SEC
    243249#endif
    244250
     
    271277#endif
    272278
    273 #endif
     279#ifdef INCL_OS2KRNL_SEC
     280    #include <OS2KSEC.h>
     281#endif
     282
     283#endif
  • branches/Grace/src/win32k/ldr/calltab.asm

    r4108 r4117  
    1 ; $Id: calltab.asm,v 1.12.4.8 2000-08-28 22:44:23 bird Exp $
     1; $Id: calltab.asm,v 1.12.4.9 2000-08-30 04:11:31 bird Exp $
    22;
    33; callTab - Call back again table - table with entry for each function or
     
    106106    public pldrpFileNameBuf_sel
    107107
     108    public SecPathFromSFN
     109
    108110
    109111;
     
    352354    db (MAXSIZE_PROLOG - 14) dup(0cch)
    353355
     356; 41
     357SecPathFromSFN PROC NEAR
     358    db MAXSIZE_PROLOG dup(0cch)
     359SecPathFromSFN ENDP
     360
     361
    354362CALLTAB ENDS
    355363
  • branches/Grace/src/win32k/test/fakea.asm

    r4108 r4117  
    1 ; $Id: fakea.asm,v 1.1.4.6 2000-08-28 22:44:25 bird Exp $
     1; $Id: fakea.asm,v 1.1.4.7 2000-08-30 04:11:33 bird Exp $
    22;
    33; Fake assembly imports.
     
    6262fakeptda_dummy              db  123 dup (0)
    6363fakeptda_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).
     64fakeptda_ptdasem            db  20  dup (0) ; PTDA semaphore - Intra-Process serialisation mutex KSEM (sg244640).
    6565fakeptda_module             dw      1   ; 1 is the hardcoded HMTE of the current executable module.
    6666fakeptda_pBeginLIBPATH      dd      0   ; BEGINLIBPATH not implemented.
Note: See TracChangeset for help on using the changeset viewer.