Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.1 KiB

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. heap.c
  5. Abstract:
  6. WinDbg Extension Api
  7. Author:
  8. Kshitiz K. Sharma (kksharma) 10-Jan-2001
  9. Environment:
  10. User Mode.
  11. Revision History:
  12. --*/
  13. #include "precomp.h"
  14. #pragma hdrstop
  15. DECLARE_API( help )
  16. {
  17. dprintf("acl <address> [flags] - Displays the ACL\n" );
  18. dprintf("atom <address> - Displays the atom or table(s) for the process\n");
  19. dprintf("avrf [-? | parameters] - Displays or modifies App Verifier settings\n");
  20. dprintf("cs [-? | parameters] - Displays critical sections for the process\n");
  21. dprintf("cxr - Obsolete, .cxr is new command\n");
  22. dprintf("dlls [-h | parameters] - Displays loaded DLLS\n");
  23. dprintf("exr - Obsolete, .exr is new command\n");
  24. dprintf("gflag [-?|<value>] - Displays the global flag\n");
  25. dprintf("heap [-? | parameters] - Displays heap info\n");
  26. dprintf("help - Displays this list\n");
  27. dprintf("kuser - Displays KUSER_SHARED_DATA\n");
  28. dprintf("list [-? | parameters] - Displays lists\n");
  29. dprintf("peb [address] - Displays the PEB structure\n");
  30. dprintf("psr <value>|@ipsr [flags] - Displays an IA64 Processor Status Word\n");
  31. dprintf("sd <address> [flags] - Displays the SECURITY_DESCRIPTOR\n" );
  32. dprintf("sid <address> [flags] - Displays the SID\n" );
  33. dprintf("slist [-? | parameters] - Displays singly-linked list\n");
  34. dprintf("teb [address] - Displays the TEB structure\n");
  35. dprintf("tls <slot | -1> [teb | 0] - Dumps TLS slots. !tls /? for usage\n");
  36. dprintf("token [-n|-?] <handle|addr> - Displays TOKEN\n");
  37. /*
  38. This is not working yet. Contact SilviuC for more info.
  39. dprintf("udeadlock [-? | parameters] - Displays App Verifier deadlock detection info\n");
  40. */
  41. dprintf("\nType \".hh [command]\" for more detailed help\n");
  42. return S_OK;
  43. }