* Fix pthread_mutexattr_t type according to /usr/include/pthread_types.h

git-svn-id: trunk@20689 -
This commit is contained in:
pierre 2012-04-01 21:27:18 +00:00
parent bb8be38607
commit 9d9a5013fd

View File

@ -150,7 +150,10 @@ type
pthread_t = pointer;
pthread_attr_t = pointer;
pthread_mutex_t = {$i pmutext.inc}
pthread_mutexattr_t = pointer;
pthread_mutexattr_t = record
ptma_magic : cint;
ptma_private : pointer;
end;
pthread_cond_t = pointer;
pthread_condattr_t = pointer;
pthread_key_t = cint;