Commit a7987858 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

* io/async.h: Use __gthread_mutex_t, not pthread_mutex_t.

From-SVN: r264120
parent c0bb5047
2018-09-05 Hans-Peter Nilsson <hp@axis.com>
* io/async.h: Use __gthread_mutex_t, not pthread_mutex_t.
2018-09-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
* io/io.h: Change declaration of vlist type to
......
......@@ -337,8 +337,8 @@ struct adv_cond
typedef struct async_unit
{
pthread_mutex_t io_lock; /* Lock for doing actual I/O. */
pthread_mutex_t lock; /* Lock for manipulating the queue structure. */
__gthread_mutex_t io_lock; /* Lock for doing actual I/O. */
__gthread_mutex_t lock; /* Lock for manipulating the queue structure. */
bool empty;
struct
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment