private.h 451 B

123456789101112131415161718
  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. lub_partition_t m_base;
  13. lub_heap_t *m_local_heap;
  14. SEMAPHORE m_sem;
  15. lub_vxworks_partition_t *m_next_partition;
  16. };