kernel: POSIX: removing unused elements from POSIX object attribute.
This patch removes unused member element from POSIX object attributes (mutex, condition variable and barrier). Signed-off-by: Youvedeep Singh <youvedeep.singh@intel.com>
This commit is contained in:
parent
d50b1fe981
commit
7903c84694
1 changed files with 0 additions and 3 deletions
|
@ -36,7 +36,6 @@ typedef struct pthread_mutex {
|
|||
} pthread_mutex_t;
|
||||
|
||||
typedef struct pthread_mutexattr {
|
||||
int unused;
|
||||
} pthread_mutexattr_t;
|
||||
|
||||
/* Condition variables */
|
||||
|
@ -45,7 +44,6 @@ typedef struct pthread_cond {
|
|||
} pthread_cond_t;
|
||||
|
||||
typedef struct pthread_condattr {
|
||||
int unused;
|
||||
} pthread_condattr_t;
|
||||
|
||||
/* Barrier */
|
||||
|
@ -56,7 +54,6 @@ typedef struct pthread_barrier {
|
|||
} pthread_barrier_t;
|
||||
|
||||
typedef struct pthread_barrierattr {
|
||||
int unused;
|
||||
} pthread_barrierattr_t;
|
||||
|
||||
/* time related attributes */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue