thr_lock.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:38k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18. Read and write locks for Posix threads. All tread must acquire
  19. all locks it needs through thr_multi_lock() to avoid dead-locks.
  20. A lock consists of a master lock (THR_LOCK), and lock instances
  21. (THR_LOCK_DATA).
  22. Any thread can have any number of lock instances (read and write:s) on
  23. any lock. All lock instances must be freed.
  24. Locks are prioritized according to:
  25. The current lock types are:
  26. TL_READ   # Low priority read
  27. TL_READ_WITH_SHARED_LOCKS
  28. TL_READ_HIGH_PRIORITY # High priority read
  29. TL_READ_NO_INSERT # Read without concurrent inserts
  30. TL_WRITE_ALLOW_WRITE # Write lock that allows other writers
  31. TL_WRITE_ALLOW_READ # Write lock, but allow reading
  32. TL_WRITE_CONCURRENT_INSERT
  33. # Insert that can be mixed when selects
  34. TL_WRITE_DELAYED # Used by delayed insert
  35. # Allows lower locks to take over
  36. TL_WRITE_LOW_PRIORITY # Low priority write
  37. TL_WRITE # High priority write
  38. TL_WRITE_ONLY # High priority write
  39. # Abort all new lock request with an error
  40. Locks are prioritized according to:
  41. WRITE_ALLOW_WRITE, WRITE_ALLOW_READ, WRITE_CONCURRENT_INSERT, WRITE_DELAYED,
  42. WRITE_LOW_PRIORITY, READ, WRITE, READ_HIGH_PRIORITY and WRITE_ONLY
  43. Locks in the same privilege level are scheduled in first-in-first-out order.
  44. To allow concurrent read/writes locks, with 'WRITE_CONCURRENT_INSERT' one
  45. should put a pointer to the following functions in the lock structure:
  46. (If the pointer is zero (default), the function is not called)
  47. check_status:
  48.  Before giving a lock of type TL_WRITE_CONCURRENT_INSERT,
  49.          we check if this function exists and returns 0.
  50.  If not, then the lock is upgraded to TL_WRITE_LOCK
  51.  In MyISAM this is a simple check if the insert can be done
  52.  at the end of the datafile.
  53. update_status:
  54. Before a write lock is released, this function is called.
  55. In MyISAM this functions updates the count and length of the datafile
  56. get_status:
  57. When one gets a lock this functions is called.
  58. In MyISAM this stores the number of rows and size of the datafile
  59. for concurrent reads.
  60. The lock algorithm allows one to have one TL_WRITE_ALLOW_READ,
  61. TL_WRITE_CONCURRENT_INSERT or one TL_WRITE_DELAYED lock at the same time as
  62. multiple read locks.
  63. */
  64. #if !defined(MAIN) && !defined(DBUG_OFF) && !defined(EXTRA_DEBUG)
  65. #define DBUG_OFF
  66. #endif
  67. #include "mysys_priv.h"
  68. #ifdef THREAD
  69. #include "thr_lock.h"
  70. #include <m_string.h>
  71. #include <errno.h>
  72. my_bool thr_lock_inited=0;
  73. ulong locks_immediate = 0L, locks_waited = 0L;
  74. /* The following constants are only for debug output */
  75. #define MAX_THREADS 100
  76. #define MAX_LOCKS   100
  77. static LIST *thread_list; /* List of threads in use */
  78. ulong max_write_lock_count= ~(ulong) 0L;
  79. static inline pthread_cond_t *get_cond(void)
  80. {
  81.   return &my_thread_var->suspend;
  82. }
  83. /*
  84. ** For the future (now the thread specific cond is alloced by my_pthread.c)
  85. */
  86. my_bool init_thr_lock()
  87. {
  88.   thr_lock_inited=1;
  89.   return 0;
  90. }
  91. #ifdef EXTRA_DEBUG
  92. static int found_errors=0;
  93. static int check_lock(struct st_lock_list *list, const char* lock_type,
  94.       const char *where, my_bool same_thread)
  95. {
  96.   THR_LOCK_DATA *data,**prev;
  97.   uint count=0;
  98.   pthread_t first_thread;
  99.   LINT_INIT(first_thread);
  100.   prev= &list->data;
  101.   if (list->data)
  102.   {
  103.     enum thr_lock_type last_lock_type=list->data->type;
  104.     if (same_thread && list->data)
  105.       first_thread=list->data->thread;
  106.     for (data=list->data; data && count++ < MAX_LOCKS ; data=data->next)
  107.     {
  108.       if (data->type != last_lock_type)
  109. last_lock_type=TL_IGNORE;
  110.       if (data->prev != prev)
  111.       {
  112. fprintf(stderr,
  113. "Warning: prev link %d didn't point at previous lock at %s: %sn",
  114. count, lock_type, where);
  115. return 1;
  116.       }
  117.       if (same_thread && ! pthread_equal(data->thread,first_thread) &&
  118.   last_lock_type != TL_WRITE_ALLOW_WRITE)
  119.       {
  120. fprintf(stderr,
  121. "Warning: Found locks from different threads in %s: %sn",
  122. lock_type,where);
  123. return 1;
  124.       }
  125.       prev= &data->next;
  126.     }
  127.     if (data)
  128.     {
  129.       fprintf(stderr,"Warning: found too many locks at %s: %sn",
  130.       lock_type,where);
  131.       return 1;
  132.     }
  133.   }
  134.   if (prev != list->last)
  135.   {
  136.     fprintf(stderr,"Warning: last didn't point at last lock at %s: %sn",
  137.     lock_type, where);
  138.     return 1;
  139.   }
  140.   return 0;
  141. }
  142. static void check_locks(THR_LOCK *lock, const char *where,
  143. my_bool allow_no_locks)
  144. {
  145.   if (!found_errors)
  146.   {
  147.     if (check_lock(&lock->write,"write",where,1) |
  148. check_lock(&lock->write_wait,"write_wait",where,0) |
  149. check_lock(&lock->read,"read",where,0) |
  150. check_lock(&lock->read_wait,"read_wait",where,0))
  151.       found_errors=1;
  152.     if (!found_errors)
  153.     {
  154.       uint count=0;
  155.       THR_LOCK_DATA *data;
  156.       for (data=lock->read.data ; data ; data=data->next)
  157.       {
  158. if ((int) data->type == (int) TL_READ_NO_INSERT)
  159.   count++;
  160.       }
  161.       if (count != lock->read_no_write_count)
  162.       {
  163. found_errors=1;
  164. fprintf(stderr,
  165. "Warning at '%s': Locks read_no_write_count was %u when it should have been %un", where, lock->read_no_write_count,count);
  166.       }      
  167.       if (!lock->write.data)
  168.       {
  169. if (!allow_no_locks && !lock->read.data &&
  170.     (lock->write_wait.data || lock->read_wait.data))
  171. {
  172.   found_errors=1;
  173.   fprintf(stderr,
  174.   "Warning at '%s': No locks in use but locks are in wait queuen",
  175.   where);
  176. }
  177. if (!lock->write_wait.data)
  178. {
  179.   if (!allow_no_locks && lock->read_wait.data)
  180.   {
  181.     found_errors=1;
  182.     fprintf(stderr,
  183.     "Warning at '%s': No write locks and waiting read locksn",
  184.     where);
  185.   }
  186. }
  187. else
  188. {
  189.   if (!allow_no_locks &&
  190.       (((lock->write_wait.data->type == TL_WRITE_CONCURRENT_INSERT ||
  191.  lock->write_wait.data->type == TL_WRITE_ALLOW_WRITE) &&
  192. !lock->read_no_write_count) ||
  193.        lock->write_wait.data->type == TL_WRITE_ALLOW_READ ||
  194.        (lock->write_wait.data->type == TL_WRITE_DELAYED &&
  195. !lock->read.data)))
  196.   {
  197.     found_errors=1;
  198.     fprintf(stderr,
  199.     "Warning at '%s': Write lock %d waiting while no exclusive read locksn",where,(int) lock->write_wait.data->type);
  200.   }
  201. }       
  202.       }
  203.       else
  204.       { /* Have write lock */
  205. if (lock->write_wait.data)
  206. {
  207.   if (!allow_no_locks && 
  208.       lock->write.data->type == TL_WRITE_ALLOW_WRITE &&
  209.       lock->write_wait.data->type == TL_WRITE_ALLOW_WRITE)
  210.   {
  211.     found_errors=1;
  212.     fprintf(stderr,
  213.     "Warning at '%s': Found WRITE_ALLOW_WRITE lock waiting for WRITE_ALLOW_WRITE lockn",
  214.     where);
  215.   }
  216. }
  217. if (lock->read.data)
  218. {
  219.   if ((!pthread_equal(lock->write.data->thread,lock->read.data->thread) &&
  220.        lock->write.data->type > TL_WRITE_DELAYED) ||
  221.       ((lock->write.data->type == TL_WRITE_CONCURRENT_INSERT ||
  222. lock->write.data->type == TL_WRITE_ALLOW_WRITE) &&
  223.        lock->read_no_write_count))
  224.   {
  225.     found_errors=1;
  226.     fprintf(stderr,
  227.     "Warning at '%s': Found lock that is write and read lockedn",
  228.     where);
  229.   }
  230. }
  231. if (lock->read_wait.data)
  232. {
  233.   if (!allow_no_locks && lock->write.data->type <= TL_WRITE_DELAYED &&
  234.       lock->read_wait.data->type <= TL_READ_HIGH_PRIORITY)
  235.   {
  236.     found_errors=1;
  237.     fprintf(stderr,
  238.     "Warning at '%s': Found read lock of type %d waiting for write lock of type %dn",
  239.     where,
  240.     (int) lock->read_wait.data->type,
  241.     (int) lock->write.data->type);
  242.   }
  243. }
  244.       }
  245.     }
  246.     if (found_errors)
  247.     {
  248.       DBUG_PRINT("error",("Found wrong lock"));
  249.     }
  250.   }
  251. }
  252. #else /* EXTRA_DEBUG */
  253. #define check_locks(A,B,C)
  254. #endif
  255. /* Initialize a lock */
  256. void thr_lock_init(THR_LOCK *lock)
  257. {
  258.   DBUG_ENTER("thr_lock_init");
  259.   bzero((char*) lock,sizeof(*lock));
  260.   VOID(pthread_mutex_init(&lock->mutex,NULL));
  261.   lock->read.last= &lock->read.data;
  262.   lock->read_wait.last= &lock->read_wait.data;
  263.   lock->write_wait.last= &lock->write_wait.data;
  264.   lock->write.last= &lock->write.data;
  265.   pthread_mutex_lock(&THR_LOCK_lock); /* Add to locks in use */
  266.   lock->list.data=(void*) lock;
  267.   thread_list=list_add(thread_list,&lock->list);
  268.   pthread_mutex_unlock(&THR_LOCK_lock);
  269.   DBUG_VOID_RETURN;
  270. }
  271. void thr_lock_delete(THR_LOCK *lock)
  272. {
  273.   DBUG_ENTER("thr_lock_delete");
  274.   VOID(pthread_mutex_destroy(&lock->mutex));
  275.   pthread_mutex_lock(&THR_LOCK_lock);
  276.   thread_list=list_delete(thread_list,&lock->list);
  277.   pthread_mutex_unlock(&THR_LOCK_lock);
  278.   DBUG_VOID_RETURN;
  279. }
  280. /* Initialize a lock instance */
  281. void thr_lock_data_init(THR_LOCK *lock,THR_LOCK_DATA *data, void *param)
  282. {
  283.   data->lock=lock;
  284.   data->type=TL_UNLOCK;
  285.   data->thread=pthread_self();
  286.   data->thread_id=my_thread_id(); /* for debugging */
  287.   data->status_param=param;
  288. }
  289. static inline my_bool have_old_read_lock(THR_LOCK_DATA *data,pthread_t thread)
  290. {
  291.   for ( ; data ; data=data->next)
  292.   {
  293.     if ((pthread_equal(data->thread,thread)))
  294.       return 1; /* Already locked by thread */
  295.   }
  296.   return 0;
  297. }
  298. static inline my_bool have_specific_lock(THR_LOCK_DATA *data,
  299.  enum thr_lock_type type)
  300. {
  301.   for ( ; data ; data=data->next)
  302.   {
  303.     if (data->type == type)
  304.       return 1;
  305.   }
  306.   return 0;
  307. }
  308. static my_bool wait_for_lock(struct st_lock_list *wait, THR_LOCK_DATA *data,
  309.      my_bool in_wait_list)
  310. {
  311.   pthread_cond_t *cond=get_cond();
  312.   struct st_my_thread_var *thread_var=my_thread_var;
  313.   int result;
  314.   if (!in_wait_list)
  315.   {
  316.     (*wait->last)=data; /* Wait for lock */
  317.     data->prev= wait->last;
  318.     wait->last= &data->next;
  319.   }
  320.   /* Set up control struct to allow others to abort locks */
  321.   pthread_mutex_lock(&thread_var->mutex);
  322.   thread_var->current_mutex= &data->lock->mutex;
  323.   thread_var->current_cond=  cond;
  324.   pthread_mutex_unlock(&thread_var->mutex);
  325.   data->cond=cond;
  326.   do
  327.   {
  328.     pthread_cond_wait(cond,&data->lock->mutex);
  329.   } while (data->cond == cond && !thread_var->abort);
  330.   if (data->cond || data->type == TL_UNLOCK)
  331.   {
  332.     if (data->cond) /* aborted */
  333.     {
  334.       if (((*data->prev)=data->next)) /* remove from wait-list */
  335. data->next->prev= data->prev;
  336.       else
  337. wait->last=data->prev;
  338.     }
  339.     data->type=TL_UNLOCK; /* No lock */
  340.     result=1; /* Didn't get lock */
  341.     check_locks(data->lock,"failed wait_for_lock",0);
  342.   }
  343.   else
  344.   {
  345.     result=0;
  346.     statistic_increment(locks_waited, &THR_LOCK_lock);
  347.     if (data->lock->get_status)
  348.       (*data->lock->get_status)(data->status_param);
  349.     check_locks(data->lock,"got wait_for_lock",0);
  350.   }
  351.   pthread_mutex_unlock(&data->lock->mutex);
  352.   /* The following must be done after unlock of lock->mutex */
  353.   pthread_mutex_lock(&thread_var->mutex);
  354.   thread_var->current_mutex= 0;
  355.   thread_var->current_cond=  0;
  356.   pthread_mutex_unlock(&thread_var->mutex);
  357.   return result;
  358. }
  359. int thr_lock(THR_LOCK_DATA *data,enum thr_lock_type lock_type)
  360. {
  361.   THR_LOCK *lock=data->lock;
  362.   int result=0;
  363.   DBUG_ENTER("thr_lock");
  364.   data->next=0;
  365.   data->type=lock_type;
  366.   data->thread=pthread_self(); /* Must be reset ! */
  367.   data->thread_id=my_thread_id(); /* Must be reset ! */
  368.   VOID(pthread_mutex_lock(&lock->mutex));
  369.   DBUG_PRINT("lock",("data: %lx  thread: %ld  lock: %lx  type: %d",
  370.       data,data->thread_id,lock,(int) lock_type));
  371.   check_locks(lock,(uint) lock_type <= (uint) TL_READ_NO_INSERT ?
  372.       "enter read_lock" : "enter write_lock",0);
  373.   if ((int) lock_type <= (int) TL_READ_NO_INSERT)
  374.   {
  375.     /* Request for READ lock */
  376.     if (lock->write.data)
  377.     {
  378.       /* We can allow a read lock even if there is already a write lock
  379.  on the table in one the following cases:
  380.  - This thread alread have a write lock on the table
  381.  - The write lock is TL_WRITE_ALLOW_READ or TL_WRITE_DELAYED
  382.            and the read lock is TL_READ_HIGH_PRIORITY or TL_READ
  383.          - The write lock is TL_WRITE_CONCURRENT_INSERT or TL_WRITE_ALLOW_WRITE
  384.    and the read lock is not TL_READ_NO_INSERT
  385.       */
  386.       DBUG_PRINT("lock",("write locked by thread: %ld",
  387.  lock->write.data->thread_id));
  388.       if (pthread_equal(data->thread,lock->write.data->thread) ||
  389.   (lock->write.data->type <= TL_WRITE_DELAYED &&
  390.    (((int) lock_type <= (int) TL_READ_HIGH_PRIORITY) ||
  391.     (lock->write.data->type != TL_WRITE_CONCURRENT_INSERT &&
  392.      lock->write.data->type != TL_WRITE_ALLOW_READ))))
  393.       { /* Already got a write lock */
  394. (*lock->read.last)=data; /* Add to running FIFO */
  395. data->prev=lock->read.last;
  396. lock->read.last= &data->next;
  397. if ((int) lock_type == (int) TL_READ_NO_INSERT)
  398.   lock->read_no_write_count++;
  399. check_locks(lock,"read lock with old write lock",0);
  400. if (lock->get_status)
  401.   (*lock->get_status)(data->status_param);
  402. ++locks_immediate;
  403. goto end;
  404.       }
  405.       if (lock->write.data->type == TL_WRITE_ONLY)
  406.       {
  407. /* We are not allowed to get a READ lock in this case */
  408. data->type=TL_UNLOCK;
  409. result=1; /* Can't wait for this one */
  410. goto end;
  411.       }
  412.     }
  413.     else if (!lock->write_wait.data ||
  414.      lock->write_wait.data->type <= TL_WRITE_LOW_PRIORITY ||
  415.      lock_type == TL_READ_HIGH_PRIORITY ||
  416.      have_old_read_lock(lock->read.data,data->thread))
  417.     { /* No important write-locks */
  418.       (*lock->read.last)=data; /* Add to running FIFO */
  419.       data->prev=lock->read.last;
  420.       lock->read.last= &data->next;
  421.       if (lock->get_status)
  422. (*lock->get_status)(data->status_param);
  423.       if ((int) lock_type == (int) TL_READ_NO_INSERT)
  424. lock->read_no_write_count++;
  425.       check_locks(lock,"read lock with no write locks",0);
  426.       ++locks_immediate;
  427.       goto end;
  428.     }
  429.     /* Can't get lock yet;  Wait for it */
  430.     DBUG_RETURN(wait_for_lock(&lock->read_wait,data,0));
  431.   }
  432.   else /* Request for WRITE lock */
  433.   {
  434.     if (lock_type == TL_WRITE_DELAYED)
  435.     {
  436.       if (lock->write.data && lock->write.data->type == TL_WRITE_ONLY)
  437.       {
  438. data->type=TL_UNLOCK;
  439. result=1; /* Can't wait for this one */
  440. goto end;
  441.       }
  442.       /*
  443. if there is a TL_WRITE_ALLOW_READ lock, we have to wait for a lock
  444. (TL_WRITE_ALLOW_READ is used for ALTER TABLE in MySQL)
  445.       */
  446.       if ((!lock->write.data ||
  447.    lock->write.data->type != TL_WRITE_ALLOW_READ) &&
  448.   !have_specific_lock(lock->write_wait.data,TL_WRITE_ALLOW_READ) &&
  449.   (lock->write.data || lock->read.data))
  450.       {
  451. /* Add delayed write lock to write_wait queue, and return at once */
  452. (*lock->write_wait.last)=data;
  453. data->prev=lock->write_wait.last;
  454. lock->write_wait.last= &data->next;
  455. data->cond=get_cond();
  456. if (lock->get_status)
  457.   (*lock->get_status)(data->status_param);
  458. ++locks_immediate;
  459. goto end;
  460.       }
  461.     }
  462.     else if (lock_type == TL_WRITE_CONCURRENT_INSERT && ! lock->check_status)
  463.       data->type=lock_type= TL_WRITE; /* not supported */
  464.     if (lock->write.data) /* If there is a write lock */
  465.     {
  466.       if (lock->write.data->type == TL_WRITE_ONLY)
  467.       {
  468. /* We are not allowed to get a lock in this case */
  469. data->type=TL_UNLOCK;
  470. result=1; /* Can't wait for this one */
  471. goto end;
  472.       }
  473.       /*
  474. The following test will not work if the old lock was a
  475. TL_WRITE_ALLOW_WRITE, TL_WRITE_ALLOW_READ or TL_WRITE_DELAYED in
  476. the same thread, but this will never happen within MySQL.
  477.       */
  478.       if (pthread_equal(data->thread,lock->write.data->thread) ||
  479.   (lock_type == TL_WRITE_ALLOW_WRITE &&
  480.    !lock->write_wait.data &&
  481.    lock->write.data->type == TL_WRITE_ALLOW_WRITE))
  482.       {
  483. /* We have already got a write lock or all locks are
  484.    TL_WRITE_ALLOW_WRITE */
  485. (*lock->write.last)=data; /* Add to running fifo */
  486. data->prev=lock->write.last;
  487. lock->write.last= &data->next;
  488. check_locks(lock,"second write lock",0);
  489. if (data->lock->get_status)
  490.   (*data->lock->get_status)(data->status_param);
  491. ++locks_immediate;
  492. goto end;
  493.       }
  494.       DBUG_PRINT("lock",("write locked by thread: %ld",
  495.  lock->write.data->thread_id));
  496.     }
  497.     else
  498.     {
  499.       if (!lock->write_wait.data)
  500.       { /* no scheduled write locks */
  501. if (lock_type == TL_WRITE_CONCURRENT_INSERT &&
  502.     (*lock->check_status)(data->status_param))
  503.   data->type=lock_type=TL_WRITE; /* Upgrade lock */
  504. if (!lock->read.data ||
  505.     (lock_type <= TL_WRITE_DELAYED &&
  506.      ((lock_type != TL_WRITE_CONCURRENT_INSERT &&
  507.        lock_type != TL_WRITE_ALLOW_WRITE) ||
  508.       !lock->read_no_write_count)))
  509. {
  510.   (*lock->write.last)=data; /* Add as current write lock */
  511.   data->prev=lock->write.last;
  512.   lock->write.last= &data->next;
  513.   if (data->lock->get_status)
  514.     (*data->lock->get_status)(data->status_param);
  515.   check_locks(lock,"only write lock",0);
  516.   ++locks_immediate;
  517.   goto end;
  518. }
  519.       }
  520.       DBUG_PRINT("lock",("write locked by thread: %ld, type: %ld",
  521.  lock->read.data->thread_id,data->type));
  522.     }
  523.     DBUG_RETURN(wait_for_lock(&lock->write_wait,data,0));
  524.   }
  525. end:
  526.   pthread_mutex_unlock(&lock->mutex);
  527.   DBUG_RETURN(result);
  528. }
  529. static inline void free_all_read_locks(THR_LOCK *lock,
  530.        bool using_concurrent_insert)
  531. {
  532.   THR_LOCK_DATA *data=lock->read_wait.data;
  533.   check_locks(lock,"before freeing read locks",1);
  534.   /* move all locks from read_wait list to read list */
  535.   (*lock->read.last)=data;
  536.   data->prev=lock->read.last;
  537.   lock->read.last=lock->read_wait.last;
  538.   /* Clear read_wait list */
  539.   lock->read_wait.last= &lock->read_wait.data;
  540.   do
  541.   {
  542.     pthread_cond_t *cond=data->cond;
  543.     if ((int) data->type == (int) TL_READ_NO_INSERT)
  544.     {
  545.       if (using_concurrent_insert)
  546.       {
  547. /*
  548.   We can't free this lock; 
  549.   Link lock away from read chain back into read_wait chain
  550. */
  551. if (((*data->prev)=data->next))
  552.   data->next->prev=data->prev;
  553. else
  554.   lock->read.last=data->prev;
  555. *lock->read_wait.last= data;
  556. data->prev= lock->read_wait.last;
  557. lock->read_wait.last= &data->next;
  558. continue;
  559.       }
  560.       lock->read_no_write_count++;
  561.     }      
  562.     DBUG_PRINT("lock",("giving read lock to thread: %ld",
  563.        data->thread_id));
  564.     data->cond=0; /* Mark thread free */
  565.     VOID(pthread_cond_signal(cond));
  566.   } while ((data=data->next));
  567.   *lock->read_wait.last=0;
  568.   if (!lock->read_wait.data)
  569.     lock->write_lock_count=0;
  570.   check_locks(lock,"after giving read locks",0);
  571. }
  572. /* Unlock lock and free next thread on same lock */
  573. void thr_unlock(THR_LOCK_DATA *data)
  574. {
  575.   THR_LOCK *lock=data->lock;
  576.   enum thr_lock_type lock_type=data->type;
  577.   DBUG_ENTER("thr_unlock");
  578.   DBUG_PRINT("lock",("data: %lx  thread: %ld  lock: %lx",
  579.      data,data->thread_id,lock));
  580.   pthread_mutex_lock(&lock->mutex);
  581.   check_locks(lock,"start of release lock",0);
  582.   if (((*data->prev)=data->next)) /* remove from lock-list */
  583.     data->next->prev= data->prev;
  584.   else if (lock_type <= TL_READ_NO_INSERT)
  585.     lock->read.last=data->prev;
  586.   else if (lock_type == TL_WRITE_DELAYED && data->cond)
  587.   {
  588.     /* This only happens in extreme circumstances when a 
  589.        write delayed lock that is waiting for a lock */
  590.     lock->write_wait.last=data->prev; /* Put it on wait queue */
  591.   }
  592.   else
  593.     lock->write.last=data->prev;
  594.   if (lock_type >= TL_WRITE_CONCURRENT_INSERT && lock->update_status)
  595.     (*lock->update_status)(data->status_param);
  596.   if (lock_type == TL_READ_NO_INSERT)
  597.     lock->read_no_write_count--;
  598.   data->type=TL_UNLOCK; /* Mark unlocked */
  599.   check_locks(lock,"after releasing lock",1);
  600.   if (!lock->write.data) /* If no active write locks */
  601.   {
  602.     data=lock->write_wait.data;
  603.     if (!lock->read.data) /* If no more locks in use */
  604.     {
  605.       /* Release write-locks with TL_WRITE or TL_WRITE_ONLY priority first */
  606.       if (data &&
  607.   (data->type != TL_WRITE_LOW_PRIORITY || !lock->read_wait.data ||
  608.    lock->read_wait.data->type < TL_READ_HIGH_PRIORITY))
  609.       {
  610. if (lock->write_lock_count++ > max_write_lock_count)
  611. {
  612.   /* Too many write locks in a row;  Release all waiting read locks */
  613.   lock->write_lock_count=0;
  614.   if (lock->read_wait.data)
  615.   {
  616.     DBUG_PRINT("info",("Freeing all read_locks because of max_write_lock_count"));
  617.     free_all_read_locks(lock,0);
  618.     goto end;
  619.   }
  620. }
  621. for (;;)
  622. {
  623.   if (((*data->prev)=data->next)) /* remove from wait-list */
  624.     data->next->prev= data->prev;
  625.   else
  626.     lock->write_wait.last=data->prev;
  627.   (*lock->write.last)=data; /* Put in execute list */
  628.   data->prev=lock->write.last;
  629.   data->next=0;
  630.   lock->write.last= &data->next;
  631.   if (data->type == TL_WRITE_CONCURRENT_INSERT &&
  632.       (*lock->check_status)(data->status_param))
  633.     data->type=TL_WRITE; /* Upgrade lock */
  634.   DBUG_PRINT("lock",("giving write lock of type %d to thread: %ld",
  635.      data->type,data->thread_id));
  636.   {
  637.     pthread_cond_t *cond=data->cond;
  638.     data->cond=0; /* Mark thread free */
  639.     VOID(pthread_cond_signal(cond)); /* Start waiting thread */
  640.   }
  641.   if (data->type != TL_WRITE_ALLOW_WRITE ||
  642.       !lock->write_wait.data ||
  643.       lock->write_wait.data->type != TL_WRITE_ALLOW_WRITE)
  644.     break;
  645.   data=lock->write_wait.data; /* Free this too */
  646. }
  647. if (data->type >= TL_WRITE_LOW_PRIORITY)
  648. {
  649.   check_locks(lock,"giving write lock",0);
  650.   pthread_mutex_unlock(&lock->mutex);
  651.   DBUG_VOID_RETURN;
  652. }
  653. /* Release possible read locks together with the write lock */
  654.       }
  655.       if (lock->read_wait.data)
  656. free_all_read_locks(lock,
  657.     data &&
  658.     (data->type == TL_WRITE_CONCURRENT_INSERT ||
  659.      data->type == TL_WRITE_ALLOW_WRITE));
  660.       else
  661.       {
  662. DBUG_PRINT("lock",("No locks to free"));
  663.       }
  664.     }
  665.     else if (data &&
  666.      (lock_type=data->type) <= TL_WRITE_DELAYED &&
  667.      ((lock_type != TL_WRITE_CONCURRENT_INSERT &&
  668.        lock_type != TL_WRITE_ALLOW_WRITE) ||
  669.       !lock->read_no_write_count))
  670.     {
  671.       /*
  672. For DELAYED, ALLOW_READ, WRITE_ALLOW_WRITE or CONCURRENT_INSERT locks
  673. start WRITE locks together with the READ locks
  674.       */
  675.       if (lock_type == TL_WRITE_CONCURRENT_INSERT &&
  676.   (*lock->check_status)(data->status_param))
  677.       {
  678. data->type=TL_WRITE; /* Upgrade lock */
  679. if (lock->read_wait.data)
  680.   free_all_read_locks(lock,0);
  681. goto end;
  682.       }
  683.       do {
  684. pthread_cond_t *cond=data->cond;
  685. if (((*data->prev)=data->next)) /* remove from wait-list */
  686.   data->next->prev= data->prev;
  687. else
  688.   lock->write_wait.last=data->prev;
  689. (*lock->write.last)=data; /* Put in execute list */
  690. data->prev=lock->write.last;
  691. lock->write.last= &data->next;
  692. data->next=0; /* Only one write lock */
  693. data->cond=0; /* Mark thread free */
  694. VOID(pthread_cond_signal(cond)); /* Start waiting thread */
  695.       } while (lock_type == TL_WRITE_ALLOW_WRITE &&
  696.        (data=lock->write_wait.data) &&
  697.        data->type == TL_WRITE_ALLOW_WRITE);
  698.       if (lock->read_wait.data)
  699. free_all_read_locks(lock,
  700.     (lock_type == TL_WRITE_CONCURRENT_INSERT ||
  701.      lock_type == TL_WRITE_ALLOW_WRITE));
  702.     }
  703.     else if (!data && lock->read_wait.data)
  704.       free_all_read_locks(lock,0);
  705.   }
  706. end:
  707.   check_locks(lock,"thr_unlock",0);
  708.   pthread_mutex_unlock(&lock->mutex);
  709.   DBUG_VOID_RETURN;
  710. }
  711. /*
  712. ** Get all locks in a specific order to avoid dead-locks
  713. ** Sort acording to lock position and put write_locks before read_locks if
  714. ** lock on same lock.
  715. */
  716. #define LOCK_CMP(A,B) ((byte*) (A->lock) - (uint) ((A)->type) < (byte*) (B->lock)- (uint) ((B)->type))
  717. static void sort_locks(THR_LOCK_DATA **data,uint count)
  718. {
  719.   THR_LOCK_DATA **pos,**end,**prev,*tmp;
  720.   /* Sort locks with insertion sort (fast because almost always few locks) */
  721.   for (pos=data+1,end=data+count; pos < end ; pos++)
  722.   {
  723.     tmp= *pos;
  724.     if (LOCK_CMP(tmp,pos[-1]))
  725.     {
  726.       prev=pos;
  727.       do {
  728. prev[0]=prev[-1];
  729.       } while (--prev != data && LOCK_CMP(tmp,prev[-1]));
  730.       prev[0]=tmp;
  731.     }
  732.   }
  733. }
  734. int thr_multi_lock(THR_LOCK_DATA **data,uint count)
  735. {
  736.   THR_LOCK_DATA **pos,**end;
  737.   DBUG_ENTER("thr_multi_lock");
  738.   DBUG_PRINT("lock",("data: %lx  count: %d",data,count));
  739.   if (count > 1)
  740.     sort_locks(data,count);
  741.   /* lock everything */
  742.   for (pos=data,end=data+count; pos < end ; pos++)
  743.   {
  744.     if (thr_lock(*pos,(*pos)->type))
  745.     { /* Aborted */
  746.       thr_multi_unlock(data,(uint) (pos-data));
  747.       DBUG_RETURN(1);
  748.     }
  749. #ifdef MAIN
  750.     printf("Thread: %s  Got lock: %lx  type: %dn",my_thread_name(),
  751.    (long) pos[0]->lock, pos[0]->type); fflush(stdout);
  752. #endif
  753.   }
  754.   /*
  755.     Ensure that all get_locks() have the same status
  756.     If we lock the same table multiple times, we must use the same
  757.     status_param!
  758.   */
  759. #if !defined(DONT_USE_RW_LOCKS)
  760.   if (count > 1)
  761.   {
  762.     THR_LOCK_DATA *last_lock= end[-1];
  763.     pos=end-1;
  764.     do
  765.     {
  766.       pos--;
  767.       if (last_lock->lock == (*pos)->lock &&
  768.   last_lock->lock->copy_status)
  769.       {
  770. if (last_lock->type <= TL_READ_NO_INSERT)
  771. {
  772.   THR_LOCK_DATA **read_lock;
  773.   /*
  774.     If we are locking the same table with read locks we must ensure
  775.     that all tables share the status of the last write lock or
  776.     the same read lock.
  777.   */
  778.   for (;
  779.        (*pos)->type <= TL_READ_NO_INSERT &&
  780.  pos != data &&
  781.  pos[-1]->lock == (*pos)->lock ;
  782.        pos--) ;
  783.   read_lock = pos+1;
  784.   do
  785.   {
  786.     (last_lock->lock->copy_status)((*read_lock)->status_param,
  787.    (*pos)->status_param);
  788.   } while (*(read_lock++) != last_lock);
  789.   last_lock= (*pos); /* Point at last write lock */
  790. }
  791. else
  792.   (*last_lock->lock->copy_status)((*pos)->status_param,
  793.   last_lock->status_param);
  794.       }
  795.       else
  796. last_lock=(*pos);
  797.     } while (pos != data);
  798.   }
  799. #endif
  800.   DBUG_RETURN(0);
  801. }
  802.   /* free all locks */
  803. void thr_multi_unlock(THR_LOCK_DATA **data,uint count)
  804. {
  805.   THR_LOCK_DATA **pos,**end;
  806.   DBUG_ENTER("thr_multi_unlock");
  807.   DBUG_PRINT("lock",("data: %lx  count: %d",data,count));
  808.   for (pos=data,end=data+count; pos < end ; pos++)
  809.   {
  810. #ifdef MAIN
  811.     printf("Thread: %s  Rel lock: %lx  type: %dn",
  812.    my_thread_name(), (long) pos[0]->lock, pos[0]->type);
  813.     fflush(stdout);
  814. #endif
  815.     if ((*pos)->type != TL_UNLOCK)
  816.       thr_unlock(*pos);
  817.     else
  818.     {
  819.       DBUG_PRINT("lock",("Free lock: data: %lx  thread: %ld  lock: %lx",
  820.  *pos,(*pos)->thread_id,(*pos)->lock));
  821.     }
  822.   }
  823.   DBUG_VOID_RETURN;
  824. }
  825. /* Abort all threads waiting for a lock. The lock will be upgraded to a
  826.   TL_WRITE_ONLY to abort any new accesses to the lock
  827. */
  828. void thr_abort_locks(THR_LOCK *lock)
  829. {
  830.   THR_LOCK_DATA *data;
  831.   DBUG_ENTER("thr_abort_locks");
  832.   pthread_mutex_lock(&lock->mutex);
  833.   for (data=lock->read_wait.data; data ; data=data->next)
  834.   {
  835.     data->type=TL_UNLOCK; /* Mark killed */
  836.     pthread_cond_signal(data->cond);
  837.     data->cond=0; /* Removed from list */
  838.   }
  839.   for (data=lock->write_wait.data; data ; data=data->next)
  840.   {
  841.     data->type=TL_UNLOCK;
  842.     pthread_cond_signal(data->cond);
  843.     data->cond=0;
  844.   }
  845.   lock->read_wait.last= &lock->read_wait.data;
  846.   lock->write_wait.last= &lock->write_wait.data;
  847.   lock->read_wait.data=lock->write_wait.data=0;
  848.   if (lock->write.data)
  849.     lock->write.data->type=TL_WRITE_ONLY;
  850.   pthread_mutex_unlock(&lock->mutex);
  851.   DBUG_VOID_RETURN;
  852. }
  853. /* Upgrade a WRITE_DELAY lock to a WRITE_LOCK */
  854. my_bool thr_upgrade_write_delay_lock(THR_LOCK_DATA *data)
  855. {
  856.   THR_LOCK *lock=data->lock;
  857.   DBUG_ENTER("thr_upgrade_write_delay_lock");
  858.   pthread_mutex_lock(&lock->mutex);
  859.   if (data->type == TL_UNLOCK || data->type == TL_WRITE) /* Aborted */
  860.   {
  861.     pthread_mutex_unlock(&lock->mutex);
  862.     DBUG_RETURN(data->type == TL_UNLOCK);
  863.   }
  864.   check_locks(lock,"before upgrading lock",0);
  865.   /* TODO:  Upgrade to TL_WRITE_CONCURRENT_INSERT in some cases */
  866.   data->type=TL_WRITE; /* Upgrade lock */
  867.   /* Check if someone has given us the lock */
  868.   if (!data->cond)
  869.   {
  870.     if (!lock->read.data) /* No read locks */
  871.     { /* We have the lock */
  872.       if (data->lock->get_status)
  873. (*data->lock->get_status)(data->status_param);
  874.       pthread_mutex_unlock(&lock->mutex);
  875.       DBUG_RETURN(0);
  876.     }
  877.     if (((*data->prev)=data->next)) /* remove from lock-list */
  878.       data->next->prev= data->prev;
  879.     else
  880.       lock->write.last=data->prev;
  881.     if ((data->next=lock->write_wait.data)) /* Put first in lock_list */
  882.       data->next->prev= &data->next;
  883.     else
  884.       lock->write_wait.last= &data->next;
  885.     data->prev= &lock->write_wait.data;
  886.     lock->write_wait.data=data;
  887.     check_locks(lock,"upgrading lock",0);
  888.   }
  889.   DBUG_RETURN(wait_for_lock(&lock->write_wait,data,1));
  890. }
  891. /* downgrade a WRITE lock to a WRITE_DELAY lock if there is pending locks */
  892. my_bool thr_reschedule_write_lock(THR_LOCK_DATA *data)
  893. {
  894.   THR_LOCK *lock=data->lock;
  895.   DBUG_ENTER("thr_reschedule_write_lock");
  896.   pthread_mutex_lock(&lock->mutex);
  897.   if (!lock->read_wait.data) /* No waiting read locks */
  898.   {
  899.     pthread_mutex_unlock(&lock->mutex);
  900.     DBUG_RETURN(0);
  901.   }
  902.   data->type=TL_WRITE_DELAYED;
  903.   if (lock->update_status)
  904.     (*lock->update_status)(data->status_param);
  905.   if (((*data->prev)=data->next)) /* remove from lock-list */
  906.     data->next->prev= data->prev;
  907.   else
  908.     lock->write.last=data->prev;
  909.   if ((data->next=lock->write_wait.data)) /* Put first in lock_list */
  910.     data->next->prev= &data->next;
  911.   else
  912.     lock->write_wait.last= &data->next;
  913.   data->prev= &lock->write_wait.data;
  914.   data->cond=get_cond(); /* This was zero */
  915.   lock->write_wait.data=data;
  916.   free_all_read_locks(lock,0);
  917.   pthread_mutex_unlock(&lock->mutex);
  918.   DBUG_RETURN(thr_upgrade_write_delay_lock(data));
  919. }
  920. #include <my_sys.h>
  921. static void thr_print_lock(const char* name,struct st_lock_list *list)
  922. {
  923.   THR_LOCK_DATA *data,**prev;
  924.   uint count=0;
  925.   if (list->data)
  926.   {
  927.     printf("%-10s: ",name);
  928.     prev= &list->data;
  929.     for (data=list->data; data && count++ < MAX_LOCKS ; data=data->next)
  930.     {
  931.       printf("%lx (%lu:%d); ",(ulong) data,data->thread_id,(int) data->type);
  932.       if (data->prev != prev)
  933. printf("nWarning: prev didn't point at previous lockn");
  934.       prev= &data->next;
  935.     }
  936.     puts("");
  937.     if (prev != list->last)
  938.       printf("Warning: last didn't point at last lockn");
  939.   }
  940. }
  941. void thr_print_locks(void)
  942. {
  943.   LIST *list;
  944.   uint count=0;
  945.   pthread_mutex_lock(&THR_LOCK_lock);
  946.   puts("Current locks:");
  947.   for (list=thread_list ; list && count++ < MAX_THREADS ; list=rest(list))
  948.   {
  949.     THR_LOCK *lock=(THR_LOCK*) list->data;
  950.     VOID(pthread_mutex_lock(&lock->mutex));
  951.     printf("lock: %lx:",(ulong) lock);
  952.     if ((lock->write_wait.data || lock->read_wait.data) &&
  953. (! lock->read.data && ! lock->write.data))
  954.       printf(" WARNING: ");
  955.     if (lock->write.data)
  956.       printf(" write");
  957.     if (lock->write_wait.data)
  958.       printf(" write_wait");
  959.     if (lock->read.data)
  960.       printf(" read");
  961.     if (lock->read_wait.data)
  962.       printf(" read_wait");
  963.     puts("");
  964.     thr_print_lock("write",&lock->write);
  965.     thr_print_lock("write_wait",&lock->write_wait);
  966.     thr_print_lock("read",&lock->read);
  967.     thr_print_lock("read_wait",&lock->read_wait);
  968.     VOID(pthread_mutex_unlock(&lock->mutex));
  969.     puts("");
  970.   }
  971.   fflush(stdout);
  972.   pthread_mutex_unlock(&THR_LOCK_lock);
  973. }
  974. #endif /* THREAD */
  975. /*****************************************************************************
  976. ** Test of thread locks
  977. ****************************************************************************/
  978. #ifdef MAIN
  979. #ifdef THREAD
  980. struct st_test {
  981.   uint lock_nr;
  982.   enum thr_lock_type lock_type;
  983. };
  984. THR_LOCK locks[5]; /* 4 locks */
  985. struct st_test test_0[] = {{0,TL_READ}}; /* One lock */
  986. struct st_test test_1[] = {{0,TL_READ},{0,TL_WRITE}}; /* Read and write lock of lock 0 */
  987. struct st_test test_2[] = {{1,TL_WRITE},{0,TL_READ},{2,TL_READ}};
  988. struct st_test test_3[] = {{2,TL_WRITE},{1,TL_READ},{0,TL_READ}}; /* Deadlock with test_2 ? */
  989. struct st_test test_4[] = {{0,TL_WRITE},{0,TL_READ},{0,TL_WRITE},{0,TL_READ}};
  990. struct st_test test_5[] = {{0,TL_READ},{1,TL_READ},{2,TL_READ},{3,TL_READ}}; /* Many reads */
  991. struct st_test test_6[] = {{0,TL_WRITE},{1,TL_WRITE},{2,TL_WRITE},{3,TL_WRITE}}; /* Many writes */
  992. struct st_test test_7[] = {{3,TL_READ}};
  993. struct st_test test_8[] = {{1,TL_READ_NO_INSERT},{2,TL_READ_NO_INSERT},{3,TL_READ_NO_INSERT}}; /* Should be quick */
  994. struct st_test test_9[] = {{4,TL_READ_HIGH_PRIORITY}};
  995. struct st_test test_10[] ={{4,TL_WRITE}};
  996. struct st_test test_11[] = {{0,TL_WRITE_LOW_PRIORITY},{1,TL_WRITE_LOW_PRIORITY},{2,TL_WRITE_LOW_PRIORITY},{3,TL_WRITE_LOW_PRIORITY}}; /* Many writes */
  997. struct st_test test_12[] = {{0,TL_WRITE_ALLOW_READ},{1,TL_WRITE_ALLOW_READ},{2,TL_WRITE_ALLOW_READ},{3,TL_WRITE_ALLOW_READ}}; /* Many writes */
  998. struct st_test test_13[] = {{0,TL_WRITE_CONCURRENT_INSERT},{1,TL_WRITE_CONCURRENT_INSERT},{2,TL_WRITE_CONCURRENT_INSERT},{3,TL_WRITE_CONCURRENT_INSERT}};
  999. struct st_test test_14[] = {{0,TL_WRITE_CONCURRENT_INSERT},{1,TL_READ}};
  1000. struct st_test test_15[] = {{0,TL_WRITE_ALLOW_WRITE},{1,TL_READ}};
  1001. struct st_test test_16[] = {{0,TL_WRITE_ALLOW_WRITE},{1,TL_WRITE_ALLOW_WRITE}};
  1002. struct st_test *tests[] = {test_0,test_1,test_2,test_3,test_4,test_5,test_6,
  1003.    test_7,test_8,test_9,test_10,test_11,test_12,
  1004.    test_13,test_14,test_15,test_16};
  1005. int lock_counts[]= {sizeof(test_0)/sizeof(struct st_test),
  1006.     sizeof(test_1)/sizeof(struct st_test),
  1007.     sizeof(test_2)/sizeof(struct st_test),
  1008.     sizeof(test_3)/sizeof(struct st_test),
  1009.     sizeof(test_4)/sizeof(struct st_test),
  1010.     sizeof(test_5)/sizeof(struct st_test),
  1011.     sizeof(test_6)/sizeof(struct st_test),
  1012.     sizeof(test_7)/sizeof(struct st_test),
  1013.     sizeof(test_8)/sizeof(struct st_test),
  1014.     sizeof(test_9)/sizeof(struct st_test),
  1015.     sizeof(test_10)/sizeof(struct st_test),
  1016.     sizeof(test_11)/sizeof(struct st_test),
  1017.     sizeof(test_12)/sizeof(struct st_test),
  1018.     sizeof(test_13)/sizeof(struct st_test),
  1019.     sizeof(test_14)/sizeof(struct st_test),
  1020.     sizeof(test_15)/sizeof(struct st_test),
  1021.     sizeof(test_16)/sizeof(struct st_test)
  1022. };
  1023. static pthread_cond_t COND_thread_count;
  1024. static pthread_mutex_t LOCK_thread_count;
  1025. static uint thread_count;
  1026. static ulong sum=0;
  1027. #define MAX_LOCK_COUNT 8
  1028. /* The following functions is for WRITE_CONCURRENT_INSERT */
  1029. static void test_get_status(void* param __attribute__((unused)))
  1030. {
  1031. }
  1032. static void test_copy_status(void* to __attribute__((unused)) ,
  1033.      void *from __attribute__((unused)))
  1034. {
  1035. }
  1036. static my_bool test_check_status(void* param __attribute__((unused)))
  1037. {
  1038.   return 0;
  1039. }
  1040. static void *test_thread(void *arg)
  1041. {
  1042.   int i,j,param=*((int*) arg);
  1043.   THR_LOCK_DATA data[MAX_LOCK_COUNT];
  1044.   THR_LOCK_DATA *multi_locks[MAX_LOCK_COUNT];
  1045.   my_thread_init();
  1046.   printf("Thread %s (%d) startedn",my_thread_name(),param); fflush(stdout);
  1047.   for (i=0; i < lock_counts[param] ; i++)
  1048.     thr_lock_data_init(locks+tests[param][i].lock_nr,data+i,NULL);
  1049.   for (j=1 ; j < 10 ; j++) /* try locking 10 times */
  1050.   {
  1051.     for (i=0; i < lock_counts[param] ; i++)
  1052.     { /* Init multi locks */
  1053.       multi_locks[i]= &data[i];
  1054.       data[i].type= tests[param][i].lock_type;
  1055.     }
  1056.     thr_multi_lock(multi_locks,lock_counts[param]);
  1057.     pthread_mutex_lock(&LOCK_thread_count);
  1058.     {
  1059.       int tmp=rand() & 7; /* Do something from 0-2 sec */
  1060.       if (tmp == 0)
  1061. sleep(1);
  1062.       else if (tmp == 1)
  1063. sleep(2);
  1064.       else
  1065.       {
  1066. ulong k;
  1067. for (k=0 ; k < (ulong) (tmp-2)*100000L ; k++)
  1068.   sum+=k;
  1069.       }
  1070.     }
  1071.     pthread_mutex_unlock(&LOCK_thread_count);
  1072.     thr_multi_unlock(multi_locks,lock_counts[param]);
  1073.   }
  1074.   printf("Thread %s (%d) endedn",my_thread_name(),param); fflush(stdout);
  1075.   thr_print_locks();
  1076.   pthread_mutex_lock(&LOCK_thread_count);
  1077.   thread_count--;
  1078.   VOID(pthread_cond_signal(&COND_thread_count)); /* Tell main we are ready */
  1079.   pthread_mutex_unlock(&LOCK_thread_count);
  1080.   free((gptr) arg);
  1081.   return 0;
  1082. }
  1083. int main(int argc __attribute__((unused)),char **argv __attribute__((unused)))
  1084. {
  1085.   pthread_t tid;
  1086.   pthread_attr_t thr_attr;
  1087.   int i,*param,error;
  1088.   MY_INIT(argv[0]);
  1089.   if (argc > 1 && argv[1][0] == '-' && argv[1][1] == '#')
  1090.     DBUG_PUSH(argv[1]+2);
  1091.   printf("Main thread: %sn",my_thread_name());
  1092.   if ((error=pthread_cond_init(&COND_thread_count,NULL)))
  1093.   {
  1094.     fprintf(stderr,"Got error: %d from pthread_cond_init (errno: %d)",
  1095.     error,errno);
  1096.     exit(1);
  1097.   }
  1098.   if ((error=pthread_mutex_init(&LOCK_thread_count,NULL)))
  1099.   {
  1100.     fprintf(stderr,"Got error: %d from pthread_cond_init (errno: %d)",
  1101.     error,errno);
  1102.     exit(1);
  1103.   }
  1104.   for (i=0 ; i < (int) array_elements(locks) ; i++)
  1105.   {
  1106.     thr_lock_init(locks+i);
  1107.     locks[i].check_status= test_check_status;
  1108.     locks[i].update_status=test_get_status;
  1109.     locks[i].copy_status=  test_copy_status;
  1110.     locks[i].get_status=   test_get_status;
  1111.   }
  1112.   if ((error=pthread_attr_init(&thr_attr)))
  1113.   {
  1114.     fprintf(stderr,"Got error: %d from pthread_attr_init (errno: %d)",
  1115.     error,errno);
  1116.     exit(1);
  1117.   }
  1118.   if ((error=pthread_attr_setdetachstate(&thr_attr,PTHREAD_CREATE_DETACHED)))
  1119.   {
  1120.     fprintf(stderr,
  1121.     "Got error: %d from pthread_attr_setdetachstate (errno: %d)",
  1122.     error,errno);
  1123.     exit(1);
  1124.   }
  1125. #ifndef pthread_attr_setstacksize /* void return value */
  1126.   if ((error=pthread_attr_setstacksize(&thr_attr,65536L)))
  1127.   {
  1128.     fprintf(stderr,"Got error: %d from pthread_attr_setstacksize (errno: %d)",
  1129.     error,errno);
  1130.     exit(1);
  1131.   }
  1132. #endif
  1133. #ifdef HAVE_THR_SETCONCURRENCY
  1134.   VOID(thr_setconcurrency(2));
  1135. #endif
  1136.   for (i=0 ; i < (int) array_elements(lock_counts) ; i++)
  1137.   {
  1138.     param=(int*) malloc(sizeof(int));
  1139.     *param=i;
  1140.     if ((error=pthread_mutex_lock(&LOCK_thread_count)))
  1141.     {
  1142.       fprintf(stderr,"Got error: %d from pthread_mutex_lock (errno: %d)",
  1143.       error,errno);
  1144.       exit(1);
  1145.     }
  1146.     if ((error=pthread_create(&tid,&thr_attr,test_thread,(void*) param)))
  1147.     {
  1148.       fprintf(stderr,"Got error: %d from pthread_create (errno: %d)n",
  1149.       error,errno);
  1150.       pthread_mutex_unlock(&LOCK_thread_count);
  1151.       exit(1);
  1152.     }
  1153.     thread_count++;
  1154.     pthread_mutex_unlock(&LOCK_thread_count);
  1155.   }
  1156.   pthread_attr_destroy(&thr_attr);
  1157.   if ((error=pthread_mutex_lock(&LOCK_thread_count)))
  1158.     fprintf(stderr,"Got error: %d from pthread_mutex_lockn",error);
  1159.   while (thread_count)
  1160.   {
  1161.     if ((error=pthread_cond_wait(&COND_thread_count,&LOCK_thread_count)))
  1162.       fprintf(stderr,"Got error: %d from pthread_cond_waitn",error);
  1163.   }
  1164.   if ((error=pthread_mutex_unlock(&LOCK_thread_count)))
  1165.     fprintf(stderr,"Got error: %d from pthread_mutex_unlockn",error);
  1166.   for (i=0 ; i < (int) array_elements(locks) ; i++)
  1167.     thr_lock_delete(locks+i);
  1168. #ifdef EXTRA_DEBUG
  1169.   if (found_errors)
  1170.     printf("Got %d warningsn",found_errors);
  1171.   else
  1172. #endif
  1173.     printf("Test succeededn");
  1174.   return 0;
  1175. }
  1176. #else /* THREAD */
  1177. int main(int argc __attribute__((unused)),char **argv __attribute__((unused)))
  1178. {
  1179.   printf("thr_lock disabled because we are not using threadsn");
  1180.   exit(1);
  1181. }
  1182. #endif /* THREAD */
  1183. #endif /* MAIN */