diff options
Diffstat (limited to 'lib/librthread/rthread.h')
-rw-r--r-- | lib/librthread/rthread.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/librthread/rthread.h b/lib/librthread/rthread.h index 66576c11b00..e20bf11d734 100644 --- a/lib/librthread/rthread.h +++ b/lib/librthread/rthread.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread.h,v 1.29 2011/12/05 04:02:03 guenther Exp $ */ +/* $OpenBSD: rthread.h,v 1.30 2011/12/21 00:49:47 guenther Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -58,10 +58,13 @@ struct pthread_mutex { int type; pthread_t owner; int count; + int prioceiling; }; struct pthread_mutex_attr { - int type; + int ma_type; + int ma_protocol; + int ma_prioceiling; }; struct pthread_cond { |