eihvn.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* Alpha VMS external format of Extended Image Header Version.
  2. Copyright (C) 2010-2022 Free Software Foundation, Inc.
  3. Written by Tristan Gingold <gingold@adacore.com>, AdaCore.
  4. This file is part of BFD, the Binary File Descriptor library.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  16. MA 02110-1301, USA. */
  17. #ifndef _VMS_EIHVN_H
  18. #define _VMS_EIHVN_H
  19. struct vms_eihvn
  20. {
  21. unsigned char subsystem_mask[4];
  22. };
  23. struct vms_eihvn_subversion
  24. {
  25. unsigned char minor[2];
  26. unsigned char major[2];
  27. };
  28. #define EIHVN__BASE_IMAGE_BIT 0
  29. #define EIHVN__MEMORY_MANAGEMENT_BIT 1
  30. #define EIHVN__IO_BIT 2
  31. #define EIHVN__FILES_VOLUMES_BIT 3
  32. #define EIHVN__PROCESS_SCHED_BIT 4
  33. #define EIHVN__SYSGEN_BIT 5
  34. #define EIHVN__CLUSTERS_LOCKMGR_BIT 6
  35. #define EIHVN__LOGICAL_NAMES_BIT 7
  36. #define EIHVN__SECURITY_BIT 8
  37. #define EIHVN__IMAGE_ACTIVATOR_BIT 9
  38. #define EIHVN__NETWORKS_BIT 10
  39. #define EIHVN__COUNTERS_BIT 11
  40. #define EIHVN__STABLE_BIT 12
  41. #define EIHVN__MISC_BIT 13
  42. #define EIHVN__CPU_BIT 14
  43. #define EIHVN__VOLATILE_BIT 15
  44. #define EIHVN__SHELL_BIT 16
  45. #define EIHVN__POSIX_BIT 17
  46. #define EIHVN__MULTI_PROCESSING_BIT 18
  47. #define EIHVN__GALAXY_BIT 19
  48. #endif /* _VMS_EIHVN_H */