~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/os/os0file.c

  • Committer: Brian Aker
  • Date: 2008-07-24 01:17:13 UTC
  • mfrom: (202.1.18 codestyle)
  • Revision ID: brian@tangent.org-20080724011713-5jceruz4bd4oawaq
Merge Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1111
1111
static void
1112
1112
os_file_set_nocache(
1113
1113
/*================*/
1114
 
        int             fd,             /* in: file descriptor to alter */
1115
 
        const char*     file_name,      /* in: used in the diagnostic message */
1116
 
        const char*     operation_name) /* in: used in the diagnostic message,
 
1114
        int             fd,/* in: file descriptor to alter */
 
1115
        const char*     file_name,/* in: used in the diagnostic
 
1116
                                        message */
 
1117
        const char*     operation_name)/* in: used in the
 
1118
                                        diagnostic message,
1117
1119
                                        we call os_file_set_nocache()
1118
1120
                                        immediately after opening or creating
1119
1121
                                        a file, so this is either "open" or
1147
1149
                                "see MySQL Bug#26662\n");
1148
1150
                }
1149
1151
        }
 
1152
#else
 
1153
  (void)fd;
 
1154
  (void)file_name;
 
1155
  (void)operation_name;
1150
1156
#endif
1151
1157
}
1152
1158