private.h 500 B

12345678910111213141516171819
  1. /*
  2. * private.h
  3. */
  4. #include <private/semLibP.h>
  5. #include <taskVarLib.h>
  6. #include "../private.h"
  7. /**********************************************************
  8. * PRIVATE TYPES
  9. ********************************************************** */
  10. typedef struct _lub_vxworks_partition lub_vxworks_partition_t;
  11. struct _lub_vxworks_partition
  12. {
  13. lub_partition_t m_base;
  14. lub_heap_t *m_local_heap;
  15. SEMAPHORE m_sem;
  16. lub_vxworks_partition_t *m_next_partition;
  17. };