os0thread.c:

  Fix compilation error on HP-UX-11: pthread_t is a scalar there, not a struct like in HP-UX-10.20
parent c5c1a5fe
...@@ -52,8 +52,8 @@ os_thread_pf( ...@@ -52,8 +52,8 @@ os_thread_pf(
/*=========*/ /*=========*/
os_thread_id_t a) os_thread_id_t a)
{ {
#ifdef UNIV_HPUX #ifdef UNIV_HPUX10
/* In HP-UX a pthread_t is a struct of 3 fields: field1, field2, /* In HP-UX-10.20 a pthread_t is a struct of 3 fields: field1, field2,
field3. We do not know if field1 determines the thread uniquely. */ field3. We do not know if field1 determines the thread uniquely. */
return((ulint)(a.field1)); return((ulint)(a.field1));
......
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