Skip to content

Commit

Permalink
scheduler: fix 64-bit ID bug; change default MAX_APP_VERSIONS to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpanderson committed Jul 29, 2015
1 parent b67c831 commit 12cb97f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sched/sched_score.h
Expand Up @@ -19,7 +19,7 @@

struct JOB {
int index; // index into shared-mem job array
int result_id;
DB_ID_TYPE result_id;
double score;
APP* app;
BEST_APP_VERSION* bavp;
Expand Down
2 changes: 1 addition & 1 deletion sched/sched_shmem.h
Expand Up @@ -41,7 +41,7 @@
#define MAX_APPS 10
#endif
#ifndef MAX_APP_VERSIONS
#define MAX_APP_VERSIONS 50
#define MAX_APP_VERSIONS 100
#endif
#ifndef MAX_ASSIGNMENTS
#define MAX_ASSIGNMENTS 10
Expand Down

0 comments on commit 12cb97f

Please sign in to comment.