syscall.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*++
  2. Copyright (c) 2015 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. syscall.c
  5. Abstract:
  6. This module implements support infrastructure for system calls in the OS
  7. base library.
  8. Author:
  9. Evan Green 17-Jan-2015
  10. Environment:
  11. User Mode
  12. --*/
  13. //
  14. // ------------------------------------------------------------------- Includes
  15. //
  16. #include "../osbasep.h"
  17. //
  18. // ---------------------------------------------------------------- Definitions
  19. //
  20. //
  21. // ------------------------------------------------------ Data Type Definitions
  22. //
  23. //
  24. // ----------------------------------------------- Internal Function Prototypes
  25. //
  26. //
  27. // -------------------------------------------------------------------- Globals
  28. //
  29. //
  30. // ------------------------------------------------------------------ Functions
  31. //
  32. VOID
  33. OspSetUpSystemCalls (
  34. VOID
  35. )
  36. /*++
  37. Routine Description:
  38. This routine sets up the system call handler.
  39. Arguments:
  40. None.
  41. Return Value:
  42. None.
  43. --*/
  44. {
  45. return;
  46. }
  47. //
  48. // --------------------------------------------------------- Internal Functions
  49. //