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.

137 lines
1.7 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. platform.c
  5. Abstract:
  6. These are the entry points of the commands that don't exist
  7. on every platform.
  8. Author:
  9. Neil Sandlin (NeilSa) 15-Jan-1996
  10. Notes:
  11. Revision History:
  12. --*/
  13. #include <precomp.h>
  14. #pragma hdrstop
  15. VOID
  16. es(
  17. CMD_ARGLIST
  18. )
  19. {
  20. CMD_INIT();
  21. PRINTF("es has been replaced with the 'x' command\n");
  22. }
  23. VOID
  24. eventinfo(
  25. CMD_ARGLIST
  26. )
  27. {
  28. CMD_INIT();
  29. #if defined(i386)
  30. EventInfop();
  31. #else
  32. PRINTF("Eventinfo is not implemented on this platform\n");
  33. #endif
  34. }
  35. VOID
  36. pdump(
  37. CMD_ARGLIST
  38. )
  39. {
  40. CMD_INIT();
  41. #if defined(i386)
  42. ProfDumpp();
  43. #else
  44. PRINTF("pdump is not implemented on this platform\n");
  45. #endif
  46. }
  47. VOID
  48. pint(
  49. CMD_ARGLIST
  50. )
  51. {
  52. CMD_INIT();
  53. #if defined(i386)
  54. ProfIntp();
  55. #else
  56. PRINTF("pint is not implemented on this platform\n");
  57. #endif
  58. }
  59. VOID
  60. pstart(
  61. CMD_ARGLIST
  62. )
  63. {
  64. CMD_INIT();
  65. #if defined(i386)
  66. ProfStartp();
  67. #else
  68. PRINTF("pstart is not implemented on this platform\n");
  69. #endif
  70. }
  71. VOID
  72. pstop(
  73. CMD_ARGLIST
  74. )
  75. {
  76. CMD_INIT();
  77. #if defined(i386)
  78. ProfStopp();
  79. #else
  80. PRINTF("pstop is not implemented on this platform\n");
  81. #endif
  82. }
  83. VOID
  84. vdmtib(
  85. CMD_ARGLIST
  86. )
  87. {
  88. CMD_INIT();
  89. #if defined(i386)
  90. VdmTibp();
  91. #else
  92. PRINTF("VdmTib is not implemented on this platform\n");
  93. #endif
  94. }
  95. VOID
  96. fpu(
  97. CMD_ARGLIST
  98. )
  99. {
  100. CMD_INIT();
  101. #if defined(i386)
  102. Fpup();
  103. #else
  104. PRINTF("fpu is not implemented on this platform\n");
  105. #endif
  106. }