~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lock.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
1069
1069
  @param session        Thread handle.
1070
1070
  @param table_list Names of tables to lock.
1071
1071
 
1072
 
  @note 
1073
 
    This function needs to be protected by LOCK_open. If we're 
 
1072
  @note
 
1073
    This function needs to be protected by LOCK_open. If we're
1074
1074
    under LOCK TABLES, this function does not work as advertised. Namely,
1075
1075
    it does not exclude other threads from using this table and does not
1076
1076
    put an exclusive name lock on this table into the table cache.