mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 17:16:58 +00:00
- Fix ETHREAD/PROCESS typos and add a function to psfuncs.h
svn path=/trunk/; revision=19926
This commit is contained in:
parent
6b2d5ec977
commit
0047d2f2b2
2 changed files with 15 additions and 8 deletions
|
@ -74,6 +74,13 @@ PsEstablishWin32Callouts(
|
||||||
PW32_CALLOUT_DATA CalloutData
|
PW32_CALLOUT_DATA CalloutData
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
NTAPI
|
||||||
|
PsReturnProcessNonPagedPoolQuota(
|
||||||
|
IN PEPROCESS Process,
|
||||||
|
IN ULONG_PTR Amount
|
||||||
|
);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Process Impersonation Functions
|
// Process Impersonation Functions
|
||||||
//
|
//
|
||||||
|
|
|
@ -588,11 +588,11 @@ typedef struct _TERMINATION_PORT
|
||||||
#include <pshpack4.h>
|
#include <pshpack4.h>
|
||||||
typedef struct _ETHREAD
|
typedef struct _ETHREAD
|
||||||
{
|
{
|
||||||
KTHREAD Tcb; /* 1C0 */
|
KTHREAD Tcb; /* 1B8 */
|
||||||
LARGE_INTEGER CreateTime; /* 1C0 */
|
LARGE_INTEGER CreateTime; /* 1B8 */
|
||||||
LARGE_INTEGER ExitTime; /* 1C0 */
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
|
LARGE_INTEGER ExitTime; /* 1C0 */
|
||||||
LIST_ENTRY LpcReplyChain; /* 1C0 */
|
LIST_ENTRY LpcReplyChain; /* 1C0 */
|
||||||
LIST_ENTRY KeyedWaitChain; /* 1C0 */
|
LIST_ENTRY KeyedWaitChain; /* 1C0 */
|
||||||
};
|
};
|
||||||
|
@ -609,12 +609,12 @@ typedef struct _ETHREAD
|
||||||
PVOID KeyedWaitValue; /* 1D4 */
|
PVOID KeyedWaitValue; /* 1D4 */
|
||||||
};
|
};
|
||||||
KSPIN_LOCK ActiveTimerListLock; /* 1D8 */
|
KSPIN_LOCK ActiveTimerListLock; /* 1D8 */
|
||||||
LIST_ENTRY ActiveTimerListHead; /* 1D8 */
|
LIST_ENTRY ActiveTimerListHead; /* 1DC */
|
||||||
CLIENT_ID Cid; /* 1E0 */
|
CLIENT_ID Cid; /* 1E4 */
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
KSEMAPHORE LpcReplySemaphore; /* 1E4 */
|
KSEMAPHORE LpcReplySemaphore; /* 1EC */
|
||||||
KSEMAPHORE KeyedReplySemaphore; /* 1E4 */
|
KSEMAPHORE KeyedReplySemaphore; /* 1EC */
|
||||||
};
|
};
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
|
@ -747,7 +747,7 @@ typedef struct _EPROCESS
|
||||||
LIST_ENTRY ThreadListHead; /* 184 */
|
LIST_ENTRY ThreadListHead; /* 184 */
|
||||||
PVOID SecurityPort; /* 188 */
|
PVOID SecurityPort; /* 188 */
|
||||||
PVOID PaeTop; /* 18C */
|
PVOID PaeTop; /* 18C */
|
||||||
ULONG ActiveThreds; /* 190 */
|
ULONG ActiveThreads; /* 190 */
|
||||||
ACCESS_MASK GrantedAccess; /* 194 */
|
ACCESS_MASK GrantedAccess; /* 194 */
|
||||||
ULONG DefaultHardErrorProcessing; /* 198 */
|
ULONG DefaultHardErrorProcessing; /* 198 */
|
||||||
NTSTATUS LastThreadExitStatus; /* 19C */
|
NTSTATUS LastThreadExitStatus; /* 19C */
|
||||||
|
|
Loading…
Reference in a new issue