diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2002-05-30 07:45:30 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2002-05-30 07:45:30 +0000 |
commit | d74eced5d5773ae7b311b8e9ad585fc69bda0f51 (patch) | |
tree | 944be345da8ad5795dfb2a3faf28eaa3fb9903e3 /winsup/cygwin/pinfo.cc | |
parent | b050246c003ba68ad214b95720eaee6b227d8e2a (diff) | |
download | cygnal-d74eced5d5773ae7b311b8e9ad585fc69bda0f51.tar.gz cygnal-d74eced5d5773ae7b311b8e9ad585fc69bda0f51.tar.bz2 cygnal-d74eced5d5773ae7b311b8e9ad585fc69bda0f51.zip |
* autoload.cc: Replace autoload statments for ZwXXX by NtXXX.
Drop ZwQuerySystemInformation since NtQuerySystemInformation was
already available.
* fhandler_proc.cc (format_proc_uptime): Replace call to
ZwQuerySystemInformation by call to NtQuerySystemInformation.
(format_proc_stat): Ditto.
* fhandler_process.cc (format_process_stat): Replace call to
ZwQueryInformationProcess by call to NtQueryInformationProcess.
(get_process_state): Ditto.
(get_mem_values): Ditto. Replace call to ZwQueryVirtualMemory by
call to NtQueryVirtualMemory.
* ntdll.h: Cleanup. Drop ZwQuerySystemInformation since
NtQuerySystemInformation was already available. Replace declarations
of ZwXXX functions by declarations of NtXXX.
* pinfo.cc (winpids::enumNT): Replace call to ZwQuerySystemInformation
by call to NtQuerySystemInformation.
Diffstat (limited to 'winsup/cygwin/pinfo.cc')
-rw-r--r-- | winsup/cygwin/pinfo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index 4eda09080..2b96442aa 100644 --- a/winsup/cygwin/pinfo.cc +++ b/winsup/cygwin/pinfo.cc @@ -318,7 +318,7 @@ winpids::enumNT (bool winpid) NTSTATUS res; for (;;) { - res = ZwQuerySystemInformation (SystemProcessesAndThreadsInformation, + res = NtQuerySystemInformation (SystemProcessesAndThreadsInformation, procs, szprocs, NULL); if (res == 0) break; |