Subversion Repositories freemyipod

Rev

Rev 713 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 713 Rev 774
Line 84... Line 84...
84
               ]
84
               ]
85
 
85
 
86
class mutex(ExtendedCStruct):
86
class mutex(ExtendedCStruct):
87
    _fields_ = [("owner", c_uint32),
87
    _fields_ = [("owner", c_uint32),
88
                ("waiters", c_uint32),
88
                ("waiters", c_uint32),
-
 
89
                ("owned_next", c_uint32),
89
                ("count", c_int32),
90
                ("count", c_int32),
90
                ]
91
                ]
91
 
92
 
92
class wakeup(ExtendedCStruct):
93
class wakeup(ExtendedCStruct):
93
    _fields_ = [("waiter", c_uint32),
94
    _fields_ = [("waiter", c_uint32),