home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnuc / library / rcs / __ioerr_to_errno.c,v < prev    next >
Encoding:
Text File  |  1992-07-04  |  2.9 KB  |  99 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     version39-41:1.1;
  5. locks;
  6. comment    @ *  @;
  7.  
  8.  
  9. 1.1
  10. date    92.05.14.19.55.40;    author mwild;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @map IoErr() numbers into corresponding errno values
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  *  This file is part of ixemul.library for the Amiga.
  27.  *  Copyright (C) 1991, 1992  Markus M. Wild
  28.  *
  29.  *  This library is free software; you can redistribute it and/or
  30.  *  modify it under the terms of the GNU Library General Public
  31.  *  License as published by the Free Software Foundation; either
  32.  *  version 2 of the License, or (at your option) any later version.
  33.  *
  34.  *  This library is distributed in the hope that it will be useful,
  35.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  36.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  37.  *  Library General Public License for more details.
  38.  *
  39.  *  You should have received a copy of the GNU Library General Public
  40.  *  License along with this library; if not, write to the Free
  41.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  42.  *
  43.  *  $Id$
  44.  *
  45.  *  $Log$
  46.  */
  47.  
  48. #define KERNEL
  49. #include "ixemul.h"
  50.  
  51. #include <errno.h>
  52.  
  53. int
  54. __ioerr_to_errno(ioerr)
  55.     int ioerr;
  56. {
  57.   int err;
  58.  
  59.   switch (ioerr)
  60.     {
  61.       case ERROR_NO_FREE_STORE:        err = ENOMEM; break;
  62.       case ERROR_TASK_TABLE_FULL:    err = EAGAIN; break;
  63.       case ERROR_LINE_TOO_LONG:        err = E2BIG;  break;
  64.       case ERROR_FILE_NOT_OBJECT:    
  65.       case ERROR_INVALID_RESIDENT_LIBRARY: err = ENOEXEC; break;
  66.       case ERROR_NO_DEFAULT_DIR:    err = ENOTDIR; break;
  67.       case ERROR_OBJECT_IN_USE:
  68.       case ERROR_OBJECT_EXISTS:        err = EEXIST;  break;
  69.       case ERROR_DIR_NOT_FOUND:
  70.       case ERROR_OBJECT_NOT_FOUND:
  71.       case ERROR_BAD_STREAM_NAME:    err = ENOENT;  break;
  72.       case ERROR_OBJECT_TOO_LARGE:    err = ENOMEM;  break;
  73.       case ERROR_ACTION_NOT_KNOWN:    err = ENODEV;  break;
  74.       case ERROR_INVALID_COMPONENT_NAME:err = EIO;     break;
  75.       case ERROR_INVALID_LOCK:        err = ENODEV;  break;
  76.       case ERROR_OBJECT_WRONG_TYPE:    err = EINVAL;  break;
  77.       case ERROR_DISK_NOT_VALIDATED:    err = EIO;     break;
  78.       case ERROR_DISK_WRITE_PROTECTED:    err = EROFS;   break;
  79.       case ERROR_RENAME_ACROSS_DEVICES:    err = EXDEV;   break;
  80.       case ERROR_DIRECTORY_NOT_EMPTY:   err = ENOTEMPTY; break;
  81.       case ERROR_TOO_MANY_LEVELS:    err = ELOOP;   break;
  82.       case ERROR_DEVICE_NOT_MOUNTED:    err = ENXIO;   break;
  83.       case ERROR_SEEK_ERROR:        err = ESPIPE;  break;
  84.       case ERROR_COMMENT_TOO_BIG:    err = ENAMETOOLONG; break;
  85.       case ERROR_DISK_FULL:        err = ENOSPC;  break;
  86.       case ERROR_DELETE_PROTECTED:
  87.       case ERROR_WRITE_PROTECTED:
  88.       case ERROR_READ_PROTECTED:    err = EACCES;  break;
  89.       case ERROR_NOT_A_DOS_DISK:
  90.       case ERROR_NO_DISK:        err = ENXIO;   break;
  91.       case ERROR_NO_MORE_ENTRIES:    err = ENOENT;  break;
  92.       /* catch-all for illegal accesses to NIL: */
  93.       case 4242:            err = EPERM;   break;
  94.       default:                err = EIO;     break;
  95.     }
  96.   return err;
  97. }
  98. @
  99.