File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ typedef uint32_t _LOCK_T;
88
99struct __lock_t {
1010 _LOCK_T lock ;
11- uint32_t thread_tag ;
1211 uint32_t counter ;
1312};
1413
@@ -17,7 +16,7 @@ typedef struct __lock_t _LOCK_RECURSIVE_T;
1716typedef uint32_t _COND_T ;
1817
1918#define __LOCK_INITIALIZER ((_LOCK_T)0)
20- #define __LOCK_INITIALIZER_RECURSIVE ((_LOCK_RECURSIVE_T){__LOCK_INITIALIZER,0,0 })
19+ #define __LOCK_INITIALIZER_RECURSIVE ((_LOCK_RECURSIVE_T){__LOCK_INITIALIZER,0})
2120#define __COND_INITIALIZER ((_COND_T)0)
2221
2322#ifdef __cplusplus
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ typedef uint32_t _LOCK_T;
88
99struct __lock_t {
1010 _LOCK_T lock ;
11- uint32_t thread_tag ;
1211 uint32_t counter ;
1312};
1413
@@ -17,7 +16,7 @@ typedef struct __lock_t _LOCK_RECURSIVE_T;
1716typedef uint32_t _COND_T ;
1817
1918#define __LOCK_INITIALIZER ((_LOCK_T)0)
20- #define __LOCK_INITIALIZER_RECURSIVE ((_LOCK_RECURSIVE_T){__LOCK_INITIALIZER,0,0 })
19+ #define __LOCK_INITIALIZER_RECURSIVE ((_LOCK_RECURSIVE_T){__LOCK_INITIALIZER,0})
2120#define __COND_INITIALIZER ((_COND_T)0)
2221
2322#ifdef __cplusplus
You can’t perform that action at this time.
0 commit comments