~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2010-11-08 18:24:58 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108182458-twv4hyix43ojno80
Merge in changes such that lock is now broken out into its own directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
393
393
  if (found_old_table)
394
394
  {
395
395
    /* Tell threads waiting for refresh that something has happened */
396
 
    broadcast_refresh();
 
396
    locking::broadcast_refresh();
397
397
  }
398
398
}
399
399
 
693
693
  }
694
694
 
695
695
  // Notify any 'refresh' threads
696
 
  broadcast_refresh();
 
696
  locking::broadcast_refresh();
697
697
}
698
698
 
699
699
 
1345
1345
  if (get_locks && tables)
1346
1346
    delete [] tables;
1347
1347
 
1348
 
  broadcast_refresh();
 
1348
  locking::broadcast_refresh();
1349
1349
 
1350
1350
  return(error);
1351
1351
}
1433
1433
    }
1434
1434
  }
1435
1435
  if (found)
1436
 
    broadcast_refresh();
 
1436
    locking::broadcast_refresh();
1437
1437
}
1438
1438
 
1439
1439
 
1539
1539
  }
1540
1540
  *prev=0;
1541
1541
  if (found)
1542
 
    broadcast_refresh();
 
1542
    locking::broadcast_refresh();
1543
1543
 
1544
1544
  return(found);
1545
1545
}