Skip to content

Commit b8c423e

Browse files
authored
Merge pull request #230 from codes-org/develop
Develop
2 parents d42398d + 2a92960 commit b8c423e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.67])
5-
AC_INIT([codes], [1.4.1], [http://trac.mcs.anl.gov/projects/codes/newticket],[],[http://www.mcs.anl.gov/projects/codes/])
5+
AC_INIT([codes], [1.4.2], [http://trac.mcs.anl.gov/projects/codes/newticket],[],[http://www.mcs.anl.gov/projects/codes/])
66
LT_INIT
77

88
AC_CANONICAL_TARGET

src/network-workloads/model-net-mpi-replay.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ tw_stime soft_delay_mpi = 2500;
107107
tw_stime nic_delay = 1000;
108108
tw_stime copy_per_byte_eager = 0.55;
109109

110-
struct codes_jobmap_ctx *jobmap_ctx;
111-
struct codes_jobmap_params_list jobmap_p;
112-
struct codes_jobmap_params_identity jobmap_ident_p; // for if an alloc file isn't supplied.
110+
static struct codes_jobmap_ctx *jobmap_ctx;
111+
static struct codes_jobmap_params_list jobmap_p;
112+
static struct codes_jobmap_params_identity jobmap_ident_p; // for if an alloc file isn't supplied.
113113

114114

115115
/* Variables for Cortex Support */

src/network-workloads/model-net-synthetic-slimfly.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ void init_worst_case_mapping();
6969
/* Global variables for worst-case workload pairing */
7070
static int num_local_channels;
7171
static int num_global_channels;
72-
int *X;
73-
int *X_prime;
74-
int X_size;
72+
static int *X;
73+
static int *X_prime;
74+
static int X_size;
7575

7676
/* type of events */
7777
enum svr_event

0 commit comments

Comments
 (0)