home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-os2~ms.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  54 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. -- C O M P I L E R _ E X C E P T I O N S . M A C H I N E _ S P E C I F I C S--
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                              (OS/2 version)                              --
  9. --                                                                          --
  10. --                             $Revision: 1.1 $                             --
  11. --                                                                          --
  12. --       Copyright (c) 1991,1992,1993,1994, FSU, All Rights Reserved        --
  13. --                                                                          --
  14. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  15. -- terms  of  the  GNU  Library General Public License  as published by the --
  16. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  17. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  18. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  19. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  20. -- eral Library Public License  for more details.  You should have received --
  21. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  22. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  23. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  24. --                                                                          --
  25. ------------------------------------------------------------------------------
  26.  
  27. with System.Error_Reporting;
  28. package body System.Compiler_Exceptions.Machine_Specifics is
  29.  
  30.    procedure Unimplemented renames
  31.       System.Error_Reporting.Unimplemented_Operation;
  32.  
  33.    ------------------------
  34.    -- Identify_Exception --
  35.    ------------------------
  36.  
  37.    --  This function identifies the Ada exception to be raised using
  38.    --  the information when the system received a synchronous signal.
  39.    --  Since this function is machine and OS dependent, different code
  40.    --  has to be provided for different target.
  41.  
  42.    function Identify_Exception
  43.      (Which              : System.Task_Primitives.Machine_Exceptions;
  44.       Info               : System.Task_Primitives.Error_Information;
  45.       Modified_Registers : Pre_Call_State) return Exception_ID is
  46.    begin
  47.  
  48.       Unimplemented;
  49.       return Null_Exception;
  50.  
  51.    end Identify_Exception;
  52.  
  53. end System.Compiler_Exceptions.Machine_Specifics;
  54.