/*++ Copyright (c) 2015 Minoca Corp. All Rights Reserved Module Name: syscall.c Abstract: This module implements support infrastructure for system calls in the OS base library. Author: Evan Green 17-Jan-2015 Environment: User Mode --*/ // // ------------------------------------------------------------------- Includes // #include "../osbasep.h" // // ---------------------------------------------------------------- Definitions // // // ------------------------------------------------------ Data Type Definitions // // // ----------------------------------------------- Internal Function Prototypes // // // -------------------------------------------------------------------- Globals // // // ------------------------------------------------------------------ Functions // VOID OspSetUpSystemCalls ( VOID ) /*++ Routine Description: This routine sets up the system call handler. Arguments: None. Return Value: None. --*/ { return; } // // --------------------------------------------------------- Internal Functions //