Rename IOR.[ch] to ior.[ch]. I don't like CAPS.

master
Christopher J. Morrone 2011-10-27 17:23:36 -07:00
parent ca832bb46e
commit 08d5629302
8 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
AC_PREREQ([2.67])
AC_INIT()
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_SRCDIR([src/IOR.c])
AC_CONFIG_SRCDIR([src/ior.c])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_HOST

View File

@ -2,8 +2,8 @@ SUBDIRS = cbif
bin_PROGRAMS = ior
ior_SOURCES = IOR.c utilities.c parse_options.c
ior_SOURCES += IOR.h aiori.h iordef.h defaults.h
ior_SOURCES = ior.c utilities.c parse_options.c
ior_SOURCES += ior.h aiori.h iordef.h defaults.h
ior_LDADD = -lm
if USE_POSIX_AIORI

View File

@ -195,7 +195,7 @@ IOR_Xfer_NCMPI(int access,
int segmentNum,
transferNum;
/* Wei-keng Liao: In IOR.c line 1979 says "block size must be a multiple
/* Wei-keng Liao: In ior.c line 1979 says "block size must be a multiple
of transfer size." Hence, length should always == param->transferSize
below. I leave it here to double check.
*/

View File

@ -53,8 +53,8 @@
*
* NOTE: If this is changed, also change:
* defaultParameters [defaults.h]
* DisplayUsage() [IOR.c]
* ShowTest() [IOR.c]
* DisplayUsage() [ior.c]
* ShowTest() [ior.c]
* DecodeDirective() [parse_options.c]
* ParseCommandLine() [parse_options.c]
* USER_GUIDE

View File

@ -6,7 +6,7 @@
\******************************************************************************/
#include "aiori.h" /* IOR I/O interfaces */
#include "IOR.h" /* IOR definitions
#include "ior.h" /* IOR definitions
and prototypes */
#include <ctype.h> /* tolower() */
#include <errno.h> /* sys_errlist */

View File

@ -26,7 +26,7 @@ typedef struct IOR_queue_t {
/**************************** P R O T O T Y P E S *****************************/
/* functions used in IOR.c */
/* functions used in ior.c */
void AioriBind (char *);
void CheckForOutliers (IOR_param_t *, double **, int, int);
void CheckFileSize (IOR_param_t *, IOR_offset_t, int);

View File

@ -9,7 +9,7 @@
*
\******************************************************************************/
#include "IOR.h"
#include "ior.h"
#include "defaults.h" /* IOR defaults */
#include <ctype.h>

View File

@ -10,7 +10,7 @@
\******************************************************************************/
#include "aiori.h" /* abstract IOR interface */
#include "IOR.h" /* IOR functions */
#include "ior.h" /* IOR functions */
#include <errno.h> /* sys_errlist */
#include <fcntl.h> /* open() */
#include <math.h> /* pow() */