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 / i-cpoerr.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  91 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --              I N T E R F A C E S . C . P O S I X _ E R R O R             --
  6. --                                                                          --
  7. --                                  S p e c                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.8 $                             --
  10. --                                                                          --
  11. --     Copyright (c) 1991,1992,1993,1994,1995 FSU, All Rights Reserved      --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package contains those parts of the package POSIX defined in P1003.5
  27. --  (Ada binding to POSIX.1) needed to interface to Pthreads.
  28.  
  29. with Interfaces.C.System_Constants;
  30. --  Used for: various constants
  31.  
  32. package Interfaces.C.POSIX_Error is
  33.  
  34. use Interfaces.C.System_Constants;
  35. use Interfaces.C;
  36.  
  37.    type Return_Code is new int;
  38.  
  39.    Failure : constant Return_Code := -1;
  40.  
  41.    type Error_Code is new int;
  42.  
  43.    subtype EC is Error_Code;
  44.    --  Synonym used only in this package
  45.  
  46.    function Get_Error_Code return Error_Code;
  47.    pragma Import (C, Get_Error_Code, "get_errno");
  48.    --  An interface to the error number of the current thread.  This is updated
  49.    --  by Pthreads at each context switch.
  50.  
  51.    --  Error number definitions.  These definitions are derived from
  52.    --  /usr/include/errno.h and /usr/include/sys/errno.h. These are SunOS
  53.    --  errors; they have not yet been checked fsor POSIX complience.
  54.  
  55.    --  Error number definitions.
  56.  
  57.    Operation_Not_Permitted            : constant EC := EPERM;
  58.    No_Such_File_Or_Directory          : constant EC := ENOENT;
  59.    No_Such_Process                    : constant EC := ESRCH;
  60.    Interrupted_Operation              : constant EC := EINTR;
  61.    Input_Output_Error                 : constant EC := EIO;
  62.    No_Such_Device_Or_Address          : constant EC := ENXIO;
  63.    Argument_List_Too_Long             : constant EC := E2BIG;
  64.    Exec_Format_Error                  : constant EC := ENOEXEC;
  65.    Bad_File_Descriptor                : constant EC := EBADF;
  66.    No_Child_Process                   : constant EC := ECHILD;
  67.    Resource_Temporarily_Unavailable   : constant EC := EAGAIN;
  68.    Not_Enough_Space                   : constant EC := ENOMEM;
  69.    Permission_Denied                  : constant EC := EACCES;
  70.    Resource_Busy                      : constant EC := EFAULT;
  71.    File_Exists                        : constant EC := ENOTBLK;
  72.    Improper_Link                      : constant EC := EBUSY;
  73.    No_Such_Operation_On_Device        : constant EC := EEXIST;
  74.    Not_A_Directory                    : constant EC := EXDEV;
  75.    Is_A_Directory                     : constant EC := ENODEV;
  76.    Invalid_Argument                   : constant EC := ENOTDIR;
  77.    Too_Many_Open_Files_In_System      : constant EC := EISDIR;
  78.    Too_Many_Open_Files                : constant EC := EINVAL;
  79.    Priority_Ceiling_Violation         : constant EC := EINVAL;
  80.    Inappropriate_IO_Control_Operation : constant EC := ENFILE;
  81.    File_Too_Large                     : constant EC := EMFILE;
  82.    No_Space_Left_On_Device            : constant EC := ENOTTY;
  83.    Invalid_Seek                       : constant EC := ETXTBSY;
  84.    Read_Only_File_System              : constant EC := EFBIG;
  85.    Too_Many_Links                     : constant EC := ENOSPC;
  86.    Broken_Pipe                        : constant EC := ESPIPE;
  87.    Operation_Not_Implemented          : constant EC := ENOSYS;
  88.    Operation_Not_Supported            : constant EC := ENOTSUP;
  89.  
  90. end Interfaces.C.POSIX_Error;
  91.