1234567891011121314151617181920 |
- /*
- * private.h
- */
- #include <pthread.h>
- #include "../private.h"
- /**********************************************************
- * PRIVATE TYPES
- ********************************************************** */
- typedef struct _lub_posix_partition lub_posix_partition_t;
- struct _lub_posix_partition
- {
- lub_partition_t m_base;
- pthread_key_t m_key;
- pthread_mutex_t m_mutex;
- };
- void
- lub_posix_partition_init(lub_posix_partition_t *instance,
- const lub_partition_spec_t *spec);
|