diff options
author | rpj <rpj> | 2011-03-25 09:22:50 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-25 09:22:50 +0000 |
commit | 559e1bc4051f90d7a014bd4e4f5649e136dec412 (patch) | |
tree | 70e6f76c3b353b0b74b698a51088f5b9a38e53ab /pthread_mutex_init.c | |
parent | 395de1c8a9a25c343a6784cfc3ecf729c48024d8 (diff) |
Robust mutex streamlining
Diffstat (limited to 'pthread_mutex_init.c')
-rw-r--r-- | pthread_mutex_init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pthread_mutex_init.c b/pthread_mutex_init.c index 93e7384..daf805e 100644 --- a/pthread_mutex_init.c +++ b/pthread_mutex_init.c @@ -104,7 +104,6 @@ pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t * attr) mx->robustNode = (ptw32_robust_node_t*) malloc(sizeof(ptw32_robust_node_t)); mx->robustNode->stateInconsistent = PTW32_ROBUST_CONSISTENT; - mx->robustNode->lock = 0; mx->robustNode->mx = mx; mx->robustNode->next = NULL; mx->robustNode->prev = NULL; |