~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/srv/srv0srv.c

  • 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:
90
90
UNIV_INTERN my_bool     srv_file_per_table;
91
91
/* The file format to use on new *.ibd files. */
92
92
UNIV_INTERN ulint       srv_file_format = 0;
93
 
/* Whether to check file format during startup a value of 
 
93
/* Whether to check file format during startup a value of
94
94
DICT_TF_FORMAT_MAX + 1 means no checking ie. FALSE.  The default is to
95
95
set it to the highest format we support. */
96
96
UNIV_INTERN ulint       srv_check_file_format_at_startup = DICT_TF_FORMAT_MAX;
2132
2132
        /* In case mutex_exit is not a memory barrier, it is
2133
2133
        theoretically possible some threads are left waiting though
2134
2134
        the semaphore is already released. Wake up those threads: */
2135
 
        
 
2135
 
2136
2136
        sync_arr_wake_threads_if_sema_free();
2137
2137
 
2138
2138
        if (sync_array_print_long_waits()) {