err_boot.sub 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Mach Operating System
  3. * Copyright (c) 1992 Carnegie Mellon University
  4. * All Rights Reserved.
  5. *
  6. * Permission to use, copy, modify and distribute this software and its
  7. * documentation is hereby granted, provided that both the copyright
  8. * notice and this permission notice appear in all copies of the
  9. * software, derivative works or modified versions, and any portions
  10. * thereof, and that both notices appear in supporting documentation.
  11. *
  12. * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
  13. * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  14. * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  15. *
  16. * Carnegie Mellon requests users of this software to return to
  17. *
  18. * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
  19. * School of Computer Science
  20. * Carnegie Mellon University
  21. * Pittsburgh PA 15213-3890
  22. *
  23. * any improvements or extensions that they make and grant Carnegie Mellon
  24. * the rights to redistribute these changes.
  25. */
  26. /*
  27. * HISTORY
  28. * $Log$
  29. * Revision 1.1 1992/10/06 18:29:52 roland
  30. * entered into RCS
  31. *
  32. * Revision 2.2 92/04/01 19:37:59 rpd
  33. * Created.
  34. * [92/03/09 rpd]
  35. *
  36. */
  37. /*
  38. * File: err_bootstrap.sub
  39. * Author: Richard Draves, Carnegie Mellon University
  40. * Date: March 9, 1992
  41. *
  42. * Error string definitions for bootstrap
  43. */
  44. static char * err_codes_bootstrap_fs[] = {
  45. /* 0 */ "(bootstrap/fs) not a directory",
  46. /* 1 */ "(bootstrap/fs) name not found",
  47. /* 2 */ "(bootstrap/fs) name too long",
  48. /* 3 */ "(bootstrap/fs) symbolic link loop",
  49. /* 4 */ "(bootstrap/fs) bad file system",
  50. /* 5 */ "(bootstrap/fs) offset not in file",
  51. /* 6 */ "(bootstrap/fs) invalid parameter",
  52. };
  53. /* err_bootstrap subsystems */
  54. static struct error_subsystem err_bootstrap_sub[] = {
  55. /* bootstrap/0; */
  56. {
  57. "(bootstrap/fs)",
  58. errlib_count(err_codes_bootstrap_fs),
  59. err_codes_bootstrap_fs,
  60. },
  61. };