lib.dox 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio.
  3. This file is part of ChibiOS.
  4. ChibiOS is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. ChibiOS is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. /**
  16. * @defgroup oslib OS Library
  17. * @details The OS Library is a set of RTOS extensions compatible with both
  18. * the RT and NIL RTOSes.
  19. */
  20. /**
  21. * @defgroup oslib_info Version Numbers and Identification
  22. * @ingroup oslib
  23. */
  24. /**
  25. * @defgroup oslib_synchronization Synchronization
  26. * @details Synchronization services.
  27. * @ingroup oslib
  28. */
  29. /**
  30. * @defgroup oslib_binary_semaphores Binary Semaphores
  31. * @ingroup oslib_synchronization
  32. */
  33. /**
  34. * @defgroup oslib_mailboxes Mailboxes
  35. * @ingroup oslib_synchronization
  36. */
  37. /**
  38. * @defgroup oslib_pipes Pipes
  39. * @ingroup oslib_synchronization
  40. */
  41. /**
  42. * @defgroup oslib_memory Memory Management
  43. * @details Memory Management services.
  44. * @ingroup oslib
  45. */
  46. /**
  47. * @defgroup oslib_memcore Core Memory Manager
  48. * @ingroup oslib_memory
  49. */
  50. /**
  51. * @defgroup oslib_memheaps Memory Heaps
  52. * @ingroup oslib_memory
  53. */
  54. /**
  55. * @defgroup oslib_mempools Memory Pools
  56. * @ingroup oslib_memory
  57. */
  58. /**
  59. * @defgroup oslib_complex Complex Services
  60. * @ingroup oslib
  61. */
  62. /**
  63. * @defgroup oslib_objects_fifos Objects FIFOs
  64. * @ingroup oslib_complex
  65. */
  66. /**
  67. * @defgroup oslib_objects_factory Dynamic Objects Factory
  68. * @ingroup oslib_complex
  69. */