Subversion Repositories Kolibri OS

Rev

Rev 6082 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6082 Rev 9833
Line 56... Line 56...
56
 * This is the control structure for tasks blocked on mutex,
56
 * This is the control structure for tasks blocked on mutex,
57
 * which resides on the blocked task's kernel stack:
57
 * which resides on the blocked task's kernel stack:
58
 */
58
 */
59
struct mutex_waiter {
59
struct mutex_waiter {
60
	struct list_head	list;
60
	struct list_head	list;
61
    	int                	*task;
61
	void		*task;
62
};
62
};
Line 63... Line 63...
63
 
63
 
64
 
64